DialogModal constructor

const DialogModal({
  1. Key? key,
  2. required Widget child,
  3. required Alignment position,
  4. required bool isDismissing,
  5. bool isDraggable = false,
  6. Offset? offset,
  7. String? dialogId,
})

Creates a dialog modal with the specified content and position

Implementation

const DialogModal({
  super.key,
  required this.child,
  required this.position,
  required this.isDismissing,
  this.isDraggable = false,
  this.offset,
  this.dialogId,
});