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