FlowBuilder<T> constructor
const
FlowBuilder<T> ({
- Key? key,
- required Stream<
T> stream, - required Widget builder(
- BuildContext,
- T
- void onDone()?,
- void onError(
- Object error,
- StackTrace stackTrace
Implementation
const FlowBuilder({
super.key,
required this.stream,
required this.builder,
this.onDone,
this.onError,
});