恢复播放
Future<bool?> resume() async { try { return await _channel.invokeMethod<bool>('resume', {}); } on PlatformException catch (e) { debugPrint('Failed to resume'); return false; } }