Chain.flow constructor
const
Chain.flow({
- required ChainFlowState state,
- required ChainFlowFn flow,
- void onComplete()?,
- void onError(
- Object error,
- StackTrace stack
- int heightOf(
- Widget widget
- int spacing = 0,
Implementation
const Chain.flow({
required this.state,
required this.flow,
this.onComplete,
this.onError,
this.heightOf,
this.spacing = 0,
});