stop method

Future<void> stop()

Implementation

Future<void> stop() async {
  try {
    await methodChannel.invokeMethod('stop');
  } on PlatformException catch (error) {
    debugPrint('${error.code}: ${error.message}');
  }
}