lcidFilter property

List<LCID>? get lcidFilter

The whitelist of LCID types to use during the recognition.

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

Implementation

List<LCID>? get lcidFilter => _lcidFilter;
set lcidFilter (List<LCID>? val)

Implementation

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