GSStepModel constructor

GSStepModel({
  1. GlobalKey<State<StatefulWidget>>? globalKey,
  2. Widget? icon,
  3. String? stepNumber,
  4. String? stepName,
  5. GSStepStatusEnum? status,
  6. double progress = 0,
})

Implementation

GSStepModel({
  this.globalKey,
  this.icon,
  this.stepNumber,
  this.stepName,
  this.status,
  this.progress = 0,
});