showLimitedSpaceList function
- dynamic context,
- String roomId
Implementation
Future<void> showLimitedSpaceList(BuildContext context, String roomId) async {
if (!context.mounted) return;
showModalBottomSheet(
showDragHandle: true,
context: context,
constraints: const BoxConstraints(maxHeight: 450),
isScrollControlled: true,
builder: (context) {
return LimitedSpaceList(roomId: roomId);
},
);
}