cancelNotificationOnKillService method

  1. @override
Future<bool?> cancelNotificationOnKillService()
override

Implementation

@override
Future<bool?> cancelNotificationOnKillService() async {
  final success = await methodChannel
      .invokeMethod<bool>('cancelNotificationOnKillService');
  debugPrint('cancelNotificationOnKillService: $success');
  return success;
}