StepWidget constructor

const StepWidget({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. AbstractControl? control,
  5. bool? showActions,
  6. Future<bool> stepFoward()?,
})

Implementation

const StepWidget(
    {Key? key,
    required this.title,
    required this.child,
    this.control,
    this.showActions,
    this.stepFoward})
    : super(key: key);