stop method

Future<bool> stop()

Implementation

Future<bool> stop() async {
  final success = await methodChannel.invokeMethod<bool>('stop');
  return success ?? false;
}