BottomAlertDialog.custom constructor

BottomAlertDialog.custom(
  1. {required Widget body,
  2. required List<Widget> buttons,
  3. List<BottomAlertDialogAction>? actions,
  4. bool? closeButton}
)

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,
    );