1234567891011121314151617181920212223242526 |
- import 'package:plugin_basic/basic_export.dart';
- import 'package:router/componentRouter/labour_service.dart';
- import 'package:shared/utils/log_utils.dart';
- class LabourServiceImpl extends GetxService implements LabourService {
- @override
- Future<bool> isUserLogin() async{
- return Future(() => true);
- }
- @override
- void onInit() {
- super.onInit();
-
- Log.d("ProfileServiceImpl 初始化资源");
- }
- @override
- void onClose() {
- super.onClose();
-
- Log.d("ProfileServiceImpl 销毁资源");
- }
- }
|