getAutoFocus method

Future<bool> getAutoFocus()

获取自动聚焦

returns 是否自动聚焦 默认: true

Implementation

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