SubmitControllerDto constructor

SubmitControllerDto({
  1. required String id,
  2. required SubmitControllerStateDto state,
  3. required String type,
  4. required bool canRetry,
  5. required bool canRetrigger,
  6. required bool allowCancel,
  7. required bool allowResubmit,
  8. required bool canTrigger,
  9. required bool autoTrigger,
  10. required bool withHaptics,
  11. required String? debugLabel,
})

Implementation

SubmitControllerDto({
  required this.id,
  required this.state,
  required this.type,
  required this.canRetry,
  required this.canRetrigger,
  required this.allowCancel,
  required this.allowResubmit,
  required this.canTrigger,
  required this.autoTrigger,
  required this.withHaptics,
  required this.debugLabel,
});