getEnableAutoResolution method

Future<bool> getEnableAutoResolution()

获取分辨率自适应

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

Implementation

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