lcidFilter property
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;
Implementation
set lcidFilter(List<LCID>? val) {
if (val != null) val = List.unmodifiable(val);
_lcidFilter = val;
_set({"lcidFilter": val?.map((e) => e.value).toList()});
}