TuranStep constructor

const TuranStep({
  1. Widget? title,
  2. Widget? subtitle,
  3. required Widget content,
})

Implementation

const TuranStep({
  this.title,
  this.subtitle,
  required this.content,
});