BottomAlertDialog.singleButton constructor
- {required Widget title,
- required Widget body,
- required String buttonText,
- required VoidCallback onPressed,
- ButtonType buttonType = ButtonType.tertiary,
- bool? closeButton}
Implementation
factory BottomAlertDialog.singleButton({
required Widget title,
required Widget body,
required String buttonText,
required VoidCallback onPressed,
ButtonType buttonType = ButtonType.tertiary,
bool? closeButton,
}) =>
BottomAlertDialog.multiButton(
closeButton: closeButton,
title: title,
body: body,
buttons: [
BottomAlertDialogAction(
text: buttonText,
onPressed: onPressed,
buttonType: buttonType,
),
],
);