lcidIgnoreFilter property

List<LCID>? 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;
void lcidIgnoreFilter=(List<LCID>? val)

Implementation

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