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