WizardStep constructor

WizardStep({
  1. required String name,
  2. required String key,
  3. required Future execute(
    1. Map<String, dynamic> previousResults
    ),
  4. bool required = true,
})

Implementation

WizardStep({
  required this.name,
  required this.key,
  required this.execute,
  this.required = true,
});