isAutoFocusEnabled method
Query whether the device supports automatic recognition of face position (supports only the Android and iOS platforms)
Return: true
: supported; false
: not supported
Implementation
Future<bool?> isAutoFocusEnabled() async {
var result = await _channel.invokeMethod('isAutoFocusEnabled');
return V2TXLiveFlutterResult.boolValue(result);
}