stopService method

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

Implementation

@override
Future<bool?> stopService() async {
  final isDone = await methodChannel.invokeMethod<bool>('stopService');
  return isDone;
}