setNotificationOnKillService method

  1. @override
Future<bool?> setNotificationOnKillService(
  1. ArgsForKillNotification argsForKillNotification
)
override

Implementation

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