matchTextFieldMask property

bool? matchTextFieldMask

When disabled, text field OCR will be done as is and then the recognized value will be matched to the field mask for validity. If enabled, we are trying to read a field value with maximum efforts to match the mask and provide a correctly formatted value, making assumptions based on the provided field mask in the template.

Implementation

bool? get matchTextFieldMask => _matchTextFieldMask;
void matchTextFieldMask=(bool? val)

Implementation

set matchTextFieldMask(bool? val) {
  _matchTextFieldMask = val;
  _set({"matchTextFieldMask": val});
}