domain property
List<D>
get
domain
The threshold values.
Implementation
List<D> get domain => List.unmodifiable(_domain);
set
domain
(List<D> value)
Implementation
set domain(List<D> value) {
_domain = List.from(value);
}