fieldTypesIgnoreFilter property

List<FieldType>? get fieldTypesIgnoreFilter

If a document contains a Visual zone, you can specify a list of field types that should be excluded from extraction. All field types listed in this array are skipped during processing, while the remaining fields are recognized. This filter is not applicable to the MRZ, barcode or RFID. If the fieldTypesIgnoreFilter is empty, all fields are extracted.

Unmodifiable property. Use setter instead of .remove(), .addAll(), etc.

Implementation

List<FieldType>? get fieldTypesIgnoreFilter => _fieldTypesIgnoreFilter;
set fieldTypesIgnoreFilter (List<FieldType>? val)

Implementation

set fieldTypesIgnoreFilter(List<FieldType>? val) {
  if (val != null) val = List.unmodifiable(val);
  _fieldTypesIgnoreFilter = val;
  _set({"fieldTypesIgnoreFilter": val?.map((e) => e.value).toList()});
}