GtkDialog constructor

const GtkDialog({
  1. Key? key,
  2. HeaderBarStyle? headerBarStyle,
  3. List<Widget>? start,
  4. Widget? title,
  5. List<Widget>? end,
  6. AdwActions? actions,
  7. AdwControls? controls,
  8. EdgeInsets? padding,
  9. BoxConstraints? constraints,
  10. double? height,
  11. double? width,
  12. required List<Widget> children,
})

Implementation

const GtkDialog({
  Key? key,
  this.headerBarStyle,
  this.start,
  this.title,
  this.end,
  this.actions,
  this.controls,
  this.padding,
  this.constraints,
  this.height,
  this.width,
  required this.children,
}) : super(key: key);