selectVideoTrack method

Future selectVideoTrack(
  1. String video
)

Implementation

Future selectVideoTrack(String video) async {
  var result = await _channel!.invokeMethod('selectVideoTrack', video);
  var response = PluginResultModel.fromMap(result);
  if (response.isError) {
    return Future.error(Exception(response.message));
  }
  return response.data;
}