stopService method

  1. @override
Future<int> stopService()
override

Implementation

@override
Future<int> stopService() async {
    final int result = await methodChannel.invokeMethod<int>(
        'stopService', {}
    ) ?? -90;
    return result;
}