Step constructor

Step({
  1. String? title,
  2. StepperMessage? validation()?,
  3. Widget? child,
  4. Key? key,
})

Implementation

Step({this.title,this.validation, this.child, Key? key}) : super(key: key);