report_service_impl.dart 478 B

123456789101112131415161718192021
  1. import 'package:plugin_basic/basic_export.dart';
  2. import 'package:router/componentRouter/report_service.dart';
  3. import 'package:shared/utils/log_utils.dart';
  4. class ReportServiceImpl extends GetxService implements ReportService {
  5. @override
  6. void onInit() {
  7. super.onInit();
  8. //初始化资源
  9. Log.d("ProfileServiceImpl 初始化资源");
  10. }
  11. @override
  12. void onClose() {
  13. super.onClose();
  14. //销毁资源
  15. Log.d("ProfileServiceImpl 销毁资源");
  16. }
  17. }