openSheet function
void
openSheet({})
Opens a side-panel sheet.
Implementation
void openSheet({
required String title,
String? description,
BloomNode? body,
String side = 'right',
bool showCloseButton = true,
VoidCallback? onClose,
}) {
activeSheet.value = SheetConfig(
title: title,
description: description,
body: body,
side: side,
showCloseButton: showCloseButton,
onClose: onClose,
);
}