isBooked method

bool isBooked(
  1. DateTime time
)

Implementation

bool isBooked(DateTime time) {
  return bookedSlotsList.contains(time);
}