showParentSpaceList function
- dynamic context,
- String roomId
Implementation
Future<void> showParentSpaceList(
BuildContext context,
String roomId,
) async {
await showModalBottomSheet(
context: context,
showDragHandle: true,
useSafeArea: true,
isScrollControlled: true,
constraints: const BoxConstraints(maxHeight: 450),
builder: (context) {
return ParentSpaceList(roomId: roomId);
},
);
}