setLiveMixVideoResolution method
Implementation
Future<int> setLiveMixVideoResolution(
int width,
int height, [
bool tiny = false,
]) async {
Map<String, dynamic> arguments = {
'width': width,
'height': height,
'tiny': tiny,
};
int code = await _channel.invokeMethod('setLiveMixVideoResolution', arguments) ?? -1;
return code;
}