StepperMessage constructor

StepperMessage({
  1. String? title = "Something is missing in the form",
  2. String? message = "please check the form",
})

Implementation

StepperMessage({
  this.title = "Something is missing in the form",
  this.message = "please check the form",
});