documentGroupFilter property
Array of specific eligible document types to recognize from. You may, for example, specify only passports to be recognized by setting this property.
Unmodifiable property. Use setter instead of .remove(), .addAll(), etc.
Implementation
List<DocType>? get documentGroupFilter => _documentGroupFilter;
Implementation
set documentGroupFilter(List<DocType>? val) {
if (val != null) val = List.unmodifiable(val);
_documentGroupFilter = val;
_set({"documentGroupFilter": val?.map((e) => e.value).toList()});
}