filtered property
Filters out the UNDEFINED
value.
Implementation
List<T> get filtered => [
for (final value in this)
if (value.value != 0)
value,
];
Filters out the UNDEFINED
value.
List<T> get filtered => [
for (final value in this)
if (value.value != 0)
value,
];