getEnableAutoResolution method

Future<bool> getEnableAutoResolution()

获取分辨率自适应

returns 是否打开分辨率自适应 默认: false

Implementation

Future<bool> getEnableAutoResolution() async {
  String strV = await AlivcLivePusherConfig.methodChannel
      .invokeMethod('getEnableAutoResolution', _wrap());
  int intV = int.parse(strV);
  return intV == 1 ? true : false;
}