UProcessStepGet constructor

UProcessStepGet({
  1. required String id,
  2. required String title,
  3. required String description,
  4. bool isScrollable = false,
  5. List<UProcessField>? fields,
  6. String? message,
  7. UMessageBox? messageBox,
  8. List<UProcessStepStatus> steps = const <UProcessStepStatus>[],
})

Implementation

UProcessStepGet({
  required this.id,
  required this.title,
  required this.description,
  this.isScrollable = false,
  this.fields,
  this.message,
  this.messageBox,
  this.steps = const <UProcessStepStatus>[],
});