SelectRoomDrawer constructor

const SelectRoomDrawer({
  1. dynamic key,
  2. required String canCheck,
  3. String? currentSpaceId,
  4. required dynamic title,
  5. required RoomType roomType,
  6. required String keyPrefix,
})

Implementation

const SelectRoomDrawer({
  super.key,
  required this.canCheck,
  this.currentSpaceId,
  required this.title,
  required this.roomType,
  required this.keyPrefix,
});