暂停
Future<bool?> pause() async { try { return await _channel.invokeMethod<bool>('pause', {}); } on PlatformException catch (e) { debugPrint('Failed to pause'); return false; } }