UParkingSubscriptionCreateParams constructor

UParkingSubscriptionCreateParams({
  1. required String parkingId,
  2. required String licencePlate,
  3. required int vehicleType,
  4. required List<int> tags,
  5. String? customerName,
  6. String? customerPhoneNumber,
  7. double price = 0,
  8. DateTime? startDate,
  9. DateTime? expiryDate,
  10. int dailyEntryLimit = 0,
  11. bool officeHoursOnly = false,
  12. String detail1 = "",
  13. String detail2 = "",
  14. String? id,
  15. String? creatorId,
  16. List<String>? adminUserIds,
})

Implementation

UParkingSubscriptionCreateParams({
  required this.parkingId,
  required this.licencePlate,
  required this.vehicleType,
  required this.tags,
  this.customerName,
  this.customerPhoneNumber,
  this.price = 0,
  this.startDate,
  this.expiryDate,
  this.dailyEntryLimit = 0,
  this.officeHoursOnly = false,
  this.detail1 = "",
  this.detail2 = "",
  this.id,
  this.creatorId,
  this.adminUserIds,
});