setSourceVideo method
Implementation
Future<void> setSourceVideo(String playerSource) async {
try {
await _channel.invokeMethod('setSourceVideo', {'setSourceVideo': playerSource});
} on PlatformException catch (e) {
logger.e("setSourceVideo error: ${e.details} - ${e.message}");
}
}