setLiveMixVideoResolution method

Future<int> setLiveMixVideoResolution(
  1. int width,
  2. int height, [
  3. bool tiny = false
])

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