map<R> method

DelayedStateNotifier<R> map<R>(
  1. R convert(
    1. T
    )
)

Maps events of type T onto events of type R via convert

Implementation

DelayedStateNotifier<R> map<R>(R Function(T) convert) {
  return _FunctionalStateNotifier<T, R>(this, name: 'map').map(convert);
}