clearSelection method

void clearSelection()

Clears all selected seats.

Implementation

void clearSelection() {
  if (_selectedSeats.isEmpty) return;
  _selectedSeats.clear();
  notifyListeners();
}