Parking constructor

Parking({
  1. required String stationCode,
  2. String? notes,
  3. required AllDayParking allDayParking,
  4. required ShortTermParking shortTermParking,
})

Creates a new Parking instance.

Implementation

Parking({
  required this.stationCode,
  this.notes,
  required this.allDayParking,
  required this.shortTermParking,
});