ParkingInfo constructor

const ParkingInfo({
  1. required ParkingType? type,
  2. required ParkingPurpose purpose,
  3. required ParkingAccess access,
  4. required ParkingPavingType? pavingType,
  5. required bool isPaid,
  6. required bool isIncentive,
  7. required bool forTrucks,
  8. required int? levelCount,
  9. required ParkingCapacity? capacity,
})

Implementation

const ParkingInfo({
  required this.type,
  required this.purpose,
  required this.access,
  required this.pavingType,
  required this.isPaid,
  required this.isIncentive,
  required this.forTrucks,
  required this.levelCount,
  required this.capacity
});