Chain.flow constructor

const Chain.flow({
  1. required ChainFlowState state,
  2. required ChainFlowFn flow,
  3. void onComplete(
    1. List<Object?> values
    )?,
  4. void onError(
    1. Object error,
    2. StackTrace stack
    )?,
  5. int heightOf(
    1. Widget widget
    )?,
  6. int spacing = 0,
})

Implementation

const Chain.flow({
  required this.state,
  required this.flow,
  this.onComplete,
  this.onError,
  this.heightOf,
  this.spacing = 0,
});