CoolStepperCustom constructor

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

Implementation

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