closeBottomSheet<T> method
Implementation
void closeBottomSheet<T>({String? id, T? result}) {
// Stop if there is no bottomsheet open
if (!(isBottomSheetOpen ?? false)) return;
closeOverlay(id: id, result: result);
}
void closeBottomSheet<T>({String? id, T? result}) {
// Stop if there is no bottomsheet open
if (!(isBottomSheetOpen ?? false)) return;
closeOverlay(id: id, result: result);
}