ParkingInfo constructor
const
ParkingInfo({
- required ParkingType? type,
- required ParkingPurpose purpose,
- required ParkingAccess access,
- required ParkingPavingType? pavingType,
- required bool isPaid,
- required bool isIncentive,
- required bool forTrucks,
- required int? levelCount,
- 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
});