ArcaneForm constructor

const ArcaneForm({
  1. required List<Component> children,
  2. String? submitText = 'Submit',
  3. String? cancelText = 'Cancel',
  4. void onSubmit()?,
  5. void onCancel()?,
  6. bool showActions = true,
  7. double spacing = 16,
  8. Key? key,
})

Implementation

const ArcaneForm({
  required this.children,
  this.submitText = 'Submit',
  this.cancelText = 'Cancel',
  this.onSubmit,
  this.onCancel,
  this.showActions = true,
  this.spacing = 16,
  super.key,
});