YaruAlertDialog constructor

const YaruAlertDialog({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. IconData? closeIconData,
  5. AlignmentGeometry? alignment,
  6. double? width,
  7. double? height,
  8. TextAlign? titleTextAlign,
  9. List<Widget>? actions,
  10. EdgeInsetsGeometry contentPadding = EdgeInsets.zero,
  11. bool? scrollable = false,
})

Implementation

const YaruAlertDialog({
  Key? key,
  required this.title,
  required this.child,
  this.closeIconData,
  this.alignment,
  this.width,
  this.height,
  this.titleTextAlign,
  this.actions,
  this.contentPadding = EdgeInsets.zero,
  this.scrollable = false,
}) : super(key: key);