NiceStepperStep constructor

const NiceStepperStep({
  1. required String title,
  2. String? subtitle,
  3. IconData? icon,
  4. Widget? content,
  5. bool optional = false,
})

Implementation

const NiceStepperStep({
  required this.title,
  this.subtitle,
  this.icon,
  this.content,
  this.optional = false,
});