XfdnDialog constructor

const XfdnDialog({
  1. Key? key,
  2. required Widget child,
  3. bool isFullScreen = false,
  4. double? width,
  5. double? height,
})

Implementation

const XfdnDialog({
  super.key,
  required this.child,
  this.isFullScreen = false,
  this.width,
  this.height,
});