map<R> method
Maps the value of the ValueNotifier to a new value.
Implementation
ValueListenable<R> map<R>(R Function(T value) mapper) {
return MappedValueNotifier(this, mapper);
}
Maps the value of the ValueNotifier to a new value.
ValueListenable<R> map<R>(R Function(T value) mapper) {
return MappedValueNotifier(this, mapper);
}