select<S> method
SaveProvider<S>
select<S>(
- S select(
- T value
- Stream<
S> then(- Stream<
S> source, - SaveObserver $
- Stream<
override
Modifies the notification timing and the value of the state
Implementation
@override
SaveProvider<S> select<S>(
S Function(T value) select, {
Stream<S> Function(Stream<S> source, SaveObserver $)? then,
}) =>
_provider.select(select, then: then);