DynamicStep constructor
const
DynamicStep({
- required String title,
- String? subtitle,
- required List<
DynamicField> fields, - bool isActive = true,
Creates a new DynamicStep instance.
Implementation
const DynamicStep({
required this.title,
this.subtitle,
required this.fields,
this.isActive = true,
});