reservations static method
Implementation
static void reservations({UHotelResponse? hotel, UHotelRoomResponse? room}) => U.addOrSwitchTab(
room != null
? "${U.s.reservations} · ${room.title}"
: hotel != null
? "${U.s.reservations} · ${hotel.title}"
: U.s.reservations,
UAdminReservationPage(hotel: hotel, room: room),
);