CoolStepper constructor

const CoolStepper({
  1. Key? key,
  2. required List<CoolStep> steps,
  3. required VoidCallback onCompleted,
  4. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(horizontal: 20.0),
  5. CoolStepperConfig config = const CoolStepperConfig(),
  6. bool showErrorSnackbar = false,
})

Implementation

const CoolStepper({
  Key? key,
  required this.steps,
  required this.onCompleted,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: 20.0),
  this.config = const CoolStepperConfig(),
  this.showErrorSnackbar = false,
}) : super(key: key);