lcidIgnoreFilter property

List<LCID>? get lcidIgnoreFilter

The list of LCID types to ignore during the recognition. If empty, values with all LCID types will be extracted. Narrowing down the list can reduce processing time.

Implementation

List<LCID>? get lcidIgnoreFilter => _lcidIgnoreFilter;
set lcidIgnoreFilter (List<LCID>? val)

Implementation

set lcidIgnoreFilter(List<LCID>? val) {
  _lcidIgnoreFilter = val;
  _set({"lcidIgnoreFilter": val?.map((e) => e.value).toList()});
}