MongolAlertDialog constructor

const MongolAlertDialog({
  1. Key? key,
  2. Widget? title,
  3. EdgeInsetsGeometry? titlePadding,
  4. TextStyle? titleTextStyle,
  5. Widget? content,
  6. EdgeInsetsGeometry contentPadding = const EdgeInsets.fromLTRB(24.0, 20.0, 24.0, 24.0),
  7. TextStyle? contentTextStyle,
  8. List<Widget>? actions,
  9. EdgeInsetsGeometry actionsPadding = EdgeInsets.zero,
  10. VerticalDirection? actionsOverflowDirection,
  11. EdgeInsetsGeometry? buttonPadding,
  12. Color? backgroundColor,
  13. double? elevation,
  14. ShapeBorder? shape,
})

Implementation

const MongolAlertDialog({
  Key? key,
  this.title,
  this.titlePadding,
  this.titleTextStyle,
  this.content,
  this.contentPadding = const EdgeInsets.fromLTRB(24.0, 20.0, 24.0, 24.0),
  this.contentTextStyle,
  this.actions,
  this.actionsPadding = EdgeInsets.zero,
  this.actionsOverflowDirection,
  this.buttonPadding,
  this.backgroundColor,
  this.elevation,
  this.shape,
}) : super(key: key);