/* Settings for the driver to select a car for the current workday. */ class CarSelection { final DateTime date; final int? selectedCarId; final String? selectedCarPlate; CarSelection({ required this.date, this.selectedCarId, this.selectedCarPlate, }); }