setSourceVideo method

Future<void> setSourceVideo(
  1. String playerSource
)

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}");
  }
}