select<S> method

  1. @override
S select<S>(
  1. S select(
    1. I snapshot
    ), {
  2. Stream<S> pipe(
    1. Stream<S> source
    )?,
})
override

Implementation

@override
S select<S>(
  S Function(I snapshot) select, {
  Stream<S> Function(Stream<S> source)? pipe,
}) =>
    _watch.$select<T, I, S>(
      _key,
      _build,
      select: select,
      pipe: pipe,
      actionKey: _actionKey,
    );