openDrawer function
void
openDrawer({})
Opens a mobile-style bottom drawer (or customizable slide-over).
Implementation
void openDrawer({
required String title,
String? description,
BloomNode? body,
String side = 'bottom',
bool showCloseButton = true,
VoidCallback? onClose,
}) {
openSheet(
title: title,
description: description,
body: body,
side: side,
showCloseButton: showCloseButton,
onClose: onClose,
);
}