UParkingResponse constructor

UParkingResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required UBaseJson jsonData,
  4. required List<int> tags,
  5. required String title,
  6. required List<String> adminUserIds,
  7. required double entrancePrice,
  8. required double hourlyPrice,
  9. required double dailyPrice,
  10. UUserResponse? creator,
  11. String? creatorId,
})

Implementation

UParkingResponse({
  required this.id,
  required this.createdAt,
  required this.jsonData,
  required this.tags,
  required this.title,
  required this.adminUserIds,
  required this.entrancePrice,
  required this.hourlyPrice,
  required this.dailyPrice,
  this.creator,
  this.creatorId,
});