FMultiValueNotifier<T> constructor
Creates a FMultiValueNotifier with a min
and max
number of elements allowed. Defaults to no min and max.
Contract:
Throws AssertionError if:
min
< 0.max
< 0.min
>max
.
Implementation
factory FMultiValueNotifier({int min, int? max, Set<T>? values}) = _MultiNotifier<T>;