DialogFooter constructor

const DialogFooter({
  1. Key? key,
  2. VoidCallback? onOk,
  3. VoidCallback? onCancel,
  4. String okText = 'OK',
  5. String cancelText = 'Cancel',
  6. required DraggableDialogThemeData theme,
})

Implementation

const DialogFooter({
  super.key,
  this.onOk,
  this.onCancel,
  this.okText = 'OK',
  this.cancelText = 'Cancel',
  required this.theme,
});