isFrontCamera method
Querying whether the front camera is being used
Implementation
bool isFrontCamera() {
if (_only_support_mobile) {
return _deviceFFIBindings.is_front_camera(_nativePointer) == 1;
} else {
debugPrint("device-manager-api not support");
return false;
}
}