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