AuiStep constructor
const
AuiStep({
- required String title,
- String? subtitle,
- AuiStepState state = AuiStepState.pending,
Creates an AuiStep with a required title, optional subtitle,
and an optional state (defaults to AuiStepState.pending).
Implementation
const AuiStep({
required this.title,
this.subtitle,
this.state = AuiStepState.pending,
});