setLocalLiveMixInnerCdnVideoResolution method

Future<int> setLocalLiveMixInnerCdnVideoResolution(
  1. int width,
  2. int height
)

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