DraggableDialog constructor

const DraggableDialog({
  1. Key? key,
  2. required Widget body,
  3. required void onDragUpdate(
    1. DragUpdateDetails
    ),
  4. Widget? header,
  5. Widget? footer,
  6. double? width,
  7. double? maxHeight,
  8. bool expandContent = true,
  9. DraggableDialogThemeData? theme,
})

Implementation

const DraggableDialog({
  super.key,
  required this.body,
  required this.onDragUpdate,
  this.header,
  this.footer,
  this.width,
  this.maxHeight,
  this.expandContent = true,
  this.theme,
});