AnybillStoreDetailsDto constructor

AnybillStoreDetailsDto(
  1. {String? description,
  2. List<StoreOpeningHoursDto>? storeOpeningHours,
  3. String? phoneNumber,
  4. String? supportPhoneNumber,
  5. String? website,
  6. List<ReviewDto>? reviews,
  7. required double rating,
  8. required LocationDto location,
  9. required AboutUsDto aboutUs,
  10. String? email,
  11. String? appointmentUrl,
  12. List<NewsDto>? news,
  13. List<String>? categoryIds,
  14. String? googlePlacesId}
)

Implementation

AnybillStoreDetailsDto({
  this.description,
  this.storeOpeningHours,
  this.phoneNumber,
  this.supportPhoneNumber,
  this.website,
  this.reviews,
  required this.rating,
  required this.location,
  required this.aboutUs,
  this.email,
  this.appointmentUrl,
  this.news,
  this.categoryIds,
  this.googlePlacesId,
});