$select<H extends HypenGeneratedData, I, S> method
S
$select<H extends HypenGeneratedData, I, S>(
- Object key,
- H build(), {
- required S select(
- I source
- Stream<
S> pipe(- Stream<
S> source
- Stream<
- Object? actionKey,
inherited
Implementation
@override
S $select<H extends HypenGeneratedData, I, S>(
Object key,
H Function() build, {
required S Function(I source) select,
Stream<S> Function(Stream<S> source)? pipe,
Object? actionKey,
}) {
return dependsOn<H, I, S>(
key,
build,
select: (origin, I snapshot) => select(snapshot),
pipe: pipe,
actionKey: actionKey,
);
}