GiantToadDialog constructor

const GiantToadDialog({
  1. required Widget child,
  2. Widget? title,
  3. bool showCloseButton = true,
  4. VoidCallback? onClose,
  5. double? contentWidth,
  6. double? contentHeight,
  7. Key? key,
})

Implementation

const GiantToadDialog({
  required this.child,
  this.title,
  this.showCloseButton = true,
  this.onClose,
  this.contentWidth,
  this.contentHeight,
  super.key,
});