8 lines
130 B
Dart
8 lines
130 B
Dart
import 'package:get/get.dart';
|
|
|
|
class TimService extends GetxService {
|
|
Future<TimService> init() async {
|
|
return this;
|
|
}
|
|
}
|