DynamicStep constructor

const DynamicStep({
  1. required String title,
  2. String? subtitle,
  3. required List<DynamicField> fields,
  4. bool isActive = true,
})

Creates a new DynamicStep instance.

Implementation

const DynamicStep({
  required this.title,
  this.subtitle,
  required this.fields,
  this.isActive = true,
});