UParkingCreateParams constructor

UParkingCreateParams({
  1. required String title,
  2. required double entrancePrice,
  3. required double hourlyPrice,
  4. required double dailyPrice,
  5. required List<int> tags,
  6. String? detail1,
  7. String? detail2,
  8. String? id,
  9. String? creatorId,
  10. List<String>? adminUserIds,
})

Implementation

UParkingCreateParams({
  required this.title,
  required this.entrancePrice,
  required this.hourlyPrice,
  required this.dailyPrice,
  required this.tags,
  this.detail1,
  this.detail2,
  this.id,
  this.creatorId,
  this.adminUserIds,
});