MultipleInfoDialog constructor

const MultipleInfoDialog({
  1. Key? key,
  2. Widget? content,
  3. Widget? titleWidget,
  4. double? elevation,
  5. double? actionsOverflowButtonSpacing,
  6. String? semanticLabel,
  7. EdgeInsetsGeometry? contentPadding = const EdgeInsets.fromLTRB(24.0, 20.0, 24.0, 24.0),
  8. TextStyle? titleTextStyle,
  9. TextStyle? contentTextStyle,
  10. List<Widget>? actions,
  11. EdgeInsetsGeometry actionsPadding = EdgeInsets.zero,
  12. EdgeInsetsGeometry? titlePadding,
  13. EdgeInsetsGeometry? buttonPadding,
  14. MainAxisAlignment? actionsAlignment,
  15. VerticalDirection? actionsOverflowDirection,
  16. Color? backgroundColor,
  17. Clip clipBehavior = Clip.none,
  18. ShapeBorder? shape,
  19. AlignmentGeometry? alignment,
  20. Rect? rect,
  21. bool scrollable = false,
})

Implementation

const MultipleInfoDialog({
  super.key,
  this.content,
  this.titleWidget,
  this.elevation,
  this.actionsOverflowButtonSpacing,
  this.semanticLabel,
  this.contentPadding = const EdgeInsets.fromLTRB(24.0, 20.0, 24.0, 24.0),
  this.titleTextStyle,
  this.contentTextStyle,
  this.actions,
  this.actionsPadding = EdgeInsets.zero,
  this.titlePadding,
  this.buttonPadding,
  this.actionsAlignment,
  this.actionsOverflowDirection,
  this.backgroundColor,
  this.clipBehavior = Clip.none,
  this.shape,
  this.alignment,
  this.rect,
  this.scrollable = false,
}) : assert(contentPadding != null);