ZetaStep constructor

const ZetaStep({
  1. required Widget title,
  2. Widget? subtitle,
  3. bool disabled = false,
  4. String? semanticLabel,
})

Creates a step for a ZetaStepper.

Implementation

const ZetaStep({
  required this.title,
  this.subtitle,
  this.disabled = false,
  this.semanticLabel,
});