CustomAlertDialog constructor
const
CustomAlertDialog({
- Key? key,
- Widget? title,
- EdgeInsetsGeometry? titlePadding,
- VoidCallback? onCancelPress,
- EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(vertical: 10.0),
- bool expanded = false,
- bool showlogo = false,
- 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);