CustomAlertDialog constructor

const CustomAlertDialog({
  1. Key? key,
  2. Widget? title,
  3. EdgeInsetsGeometry? titlePadding,
  4. VoidCallback? onCancelPress,
  5. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(vertical: 10.0),
  6. bool expanded = false,
  7. required Widget content,
})

Implementation

const CustomAlertDialog({
  Key? key,
  this.title,
  this.titlePadding,
  this.onCancelPress,
  this.contentPadding = const EdgeInsets.symmetric(vertical: 10.0),
  this.expanded = false,
  this.showlogo = false,
  required this.content,
}) : super(key: key);