SeatController constructor
SeatController({})
Creates a SeatController.
Implementation
SeatController({
required this.seatGrid,
this.maxSelection = 5,
List<SeatPoint> initialSelection = const [],
}) {
_selectedSeats.addAll(initialSelection);
}