ZetaStep constructor

const ZetaStep({
  1. required Widget title,
  2. Widget? content,
  3. Widget? subtitle,
  4. ZetaStepType type = ZetaStepType.disabled,
})

Creates a step for a ZetaStepper.

Implementation

const ZetaStep({
  required this.title,
  this.content,
  this.subtitle,
  this.type = ZetaStepType.disabled,
});