CoolStep constructor

CoolStep({
  1. required Widget content,
  2. String? validation()? = _noValidation,
  3. String title = '',
  4. String subtitle = '',
  5. Alignment alignment = Alignment.topCenter,
})

Implementation

CoolStep({
  required this.content,
  this.validation = _noValidation,
  this.title = '',
  this.subtitle = '',
  this.alignment = Alignment.topCenter,
});