UParkingEntryParams constructor

UParkingEntryParams({
  1. required String parkingId,
  2. required String licencePlate,
  3. required int vehicleType,
  4. DateTime? startDate,
  5. String? spotNumber,
  6. String? customerPhoneNumber,
  7. bool isOffline = false,
})

Implementation

UParkingEntryParams({
  required this.parkingId,
  required this.licencePlate,
  required this.vehicleType,
  this.startDate,
  this.spotNumber,
  this.customerPhoneNumber,
  this.isOffline = false,
});