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