MoonStepperStep constructor

const MoonStepperStep({
  1. required String title,
  2. String? description,
  3. bool isCompleted = false,
})

Implementation

const MoonStepperStep({
  required this.title,
  this.description,
  this.isCompleted = false,
});