UserFlowStep constructor

UserFlowStep({
  1. required String stepId,
  2. required int number,
  3. required String title,
  4. required List<UserFlowField> fields,
  5. required List<UserFlowFileRequirement> files,
  6. String? description,
  7. String? icon,
  8. String? backgroundImageUrl,
  9. StepNavigation? navigation,
  10. List<FieldGroup>? fieldGroups,
})

Implementation

UserFlowStep({
  required this.stepId,
  required this.number,
  required this.title,
  required this.fields,
  required this.files,
  this.description,
  this.icon,
  this.backgroundImageUrl,
  this.navigation,
  this.fieldGroups,
});