stop method

Future<bool> stop()

Implementation

Future<bool> stop() async {
  try {
    final bool result = await _platform.invokeMethod('stop');
    return result;
  } catch (e) {
    print("Failed to stop: $e");
    return false;
  }
}