BottomAlertDialog.custom constructor
Implementation
factory BottomAlertDialog.custom({
required Widget body,
required List<Widget> buttons,
List<BottomAlertDialogAction>? actions,
bool? closeButton,
}) =>
BottomAlertDialog._(
closeButton: closeButton,
buttons: buttons,
actions: actions,
body: (_) => body,
);