fieldTypesFilter property

List<FieldType>? fieldTypesFilter

If you recognize the MRZ of documents, all fields will be extracted. If you recognize the Visual zone of documents, you can set the list of field types that you wish to extract, other fields will be skipped during processing. All fields will be extracted if it is empty.

Implementation

List<FieldType>? get fieldTypesFilter => _fieldTypesFilter;
void fieldTypesFilter=(List<FieldType>? val)

Implementation

set fieldTypesFilter(List<FieldType>? val) {
  _fieldTypesFilter = val;
  _set({"fieldTypesFilter": val?.map((e) => e.value).toList()});
}