FormPageStep constructor

const FormPageStep({
  1. Icon? icon,
  2. required Widget title,
  3. Widget? subtitle,
  4. StepState state = StepState.indexed,
  5. bool isActive = false,
})

Implementation

const FormPageStep({
  super.icon,
  required super.title,

  // TODO: currently don't do anything with these values
  super.subtitle,
  super.state = StepState.indexed,
  super.isActive = false,
}) : super(content: const SizedBox.shrink());