showControls method
Implementation
@override
Future<void> showControls(String playerReference) async {
try {
await methodChannel.invokeMethod('showControls', {'playerReference': playerReference});
} on PlatformException catch (e) {
debugPrint('Failed to show controls: ${e.message}');
rethrow;
}
}