ProServiceModel constructor

ProServiceModel({
  1. int? id,
  2. String? serviceLabel,
  3. String? infosUrl,
  4. String? ticketImageUrl,
  5. String? ticketOptionalMessage,
  6. int? actualDistance,
  7. double? price,
  8. double? indicativePrice,
  9. String? currency,
  10. int? nextTime,
  11. int? averageTime,
  12. int? maxDelayCancel,
  13. PlaceModel? placeInfo,
  14. String? serviceInfos,
  15. String? serviceName,
  16. String? serviceThumbnail,
  17. int? visibleInOowoo,
  18. int? requiredPayment,
  19. int? requiredUserLocation,
  20. int? requiredConfirmation,
  21. int? serviceId,
  22. String? utcModifier,
  23. required List<SubCatModel> subCats,
  24. ProsModel? proInfo,
})

Implementation

ProServiceModel({
  this.id,
  this.serviceLabel,
  this.infosUrl,
  this.ticketImageUrl,
  this.ticketOptionalMessage,
  this.actualDistance,
  this.price,
  this.indicativePrice,
  this.currency,
  this.nextTime,
  this.averageTime,
  this.maxDelayCancel,
  this.placeInfo,
  this.serviceInfos,
  this.serviceName,
  this.serviceThumbnail,
  this.visibleInOowoo,
  this.requiredPayment,
  this.requiredUserLocation,
  this.requiredConfirmation,
  this.serviceId,
  this.utcModifier,
  required this.subCats,
  this.proInfo,
});