isCameraTorchCheckDisabled property
bool?
get
isCameraTorchCheckDisabled
Allows you to disable all validations of having a torch in case Android returns that it's not available, but it can be used when checks are skipped.
Default: false
.
Android only.
Implementation
bool? get isCameraTorchCheckDisabled => _isCameraTorchCheckDisabled;
set
isCameraTorchCheckDisabled
(bool? val)
Implementation
set isCameraTorchCheckDisabled(bool? val) {
_isCameraTorchCheckDisabled = val;
_set({"isCameraTorchCheckDisabled": val});
}