isCameraAutoFocusFaceModeSupported method
Checks whether the camera auto-face focus function is supported.
Ensure that you call this method after the camera starts, for example, by calling startPreview
or joinChannel
.
Returns
true
: The device supports the camera auto-face focus function.false
: The device does not support the camera auto-face focus function.
Implementation
@override
Future<bool?> isCameraAutoFocusFaceModeSupported() {
return _invokeMethod('isCameraAutoFocusFaceModeSupported');
}