UParkingSubscriptionUpdateParams constructor

UParkingSubscriptionUpdateParams({
  1. required String id,
  2. String? customerName,
  3. String? customerPhoneNumber,
  4. double? price,
  5. DateTime? startDate,
  6. DateTime? expiryDate,
  7. int? dailyEntryLimit,
  8. bool? officeHoursOnly,
  9. List<int>? addTags,
  10. List<int>? removeTags,
  11. String? detail1,
  12. String? detail2,
  13. List<int>? tags,
  14. List<String>? adminUserIds,
  15. List<String>? addAdminUserIds,
  16. List<String>? removeAdminUserIds,
})

Implementation

UParkingSubscriptionUpdateParams({
  required this.id,
  this.customerName,
  this.customerPhoneNumber,
  this.price,
  this.startDate,
  this.expiryDate,
  this.dailyEntryLimit,
  this.officeHoursOnly,
  this.addTags,
  this.removeTags,
  this.detail1,
  this.detail2,
  this.tags,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});