PhoenixStep constructor

const PhoenixStep({
  1. Widget? stepContent,
  2. Widget? doingIcon,
  3. String? stepContentText,
  4. Widget? completedIcon,
  5. PhoenixStepState? state,
})

Creates a step for a Stepper.

The stepContent, doingIcon arguments can be null.

Implementation

const PhoenixStep({
  this.stepContent,
  this.doingIcon,
  this.stepContentText,
  this.completedIcon,
  this.state,
});