select<S> method

  1. @override
SaveProvider<S> select<S>(
  1. S select(
    1. T value
    ), {
  2. Stream<S> then(
    1. Stream<S> source,
    2. SaveObserver $
    )?,
})
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,
}) {
  // TODO: implement select
  throw UnimplementedError();
}