BottomAlertDialog.singleButton constructor

BottomAlertDialog.singleButton(
  1. {required Widget title,
  2. required Widget body,
  3. required String buttonText,
  4. required VoidCallback onPressed,
  5. ButtonType buttonType = ButtonType.tertiary,
  6. 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,
        ),
      ],
    );