Info constructor

Info({
  1. List<Category>? categories,
  2. List<Brand>? brands,
  3. List<CollectionElement>? collections,
  4. List? outlets,
  5. List<Slider>? sliders,
  6. int? id,
  7. String? name,
  8. String? description,
  9. String? currencyCode,
  10. dynamic currencyName,
  11. String? subDomain,
  12. String? mode,
  13. String? address,
  14. double? vatPercent,
  15. dynamic baseUrl,
  16. dynamic logoKey,
  17. bool? applyVat,
  18. String? whatsappNumber,
  19. String? twitterUrl,
  20. dynamic shortUrl,
  21. String? facebookUrl,
  22. String? brandColor,
  23. String? instagramHandle,
  24. String? youtubeUrl,
  25. dynamic thumbnail,
  26. HomeGrid? homeGrid,
  27. List<PickupLocation>? pickupLocations,
  28. List<ShippingService>? shippingServices,
  29. List<PaymentGateway>? paymentGateways,
})

Implementation

Info({
  this.categories,
  this.brands,
  this.collections,
  this.outlets,
  this.sliders,
  this.id,
  this.name,
  this.description,
  this.currencyCode,
  this.currencyName,
  this.subDomain,
  this.mode,
  this.address,
  this.vatPercent,
  this.baseUrl,
  this.logoKey,
  this.applyVat,
  this.whatsappNumber,
  this.twitterUrl,
  this.shortUrl,
  this.facebookUrl,
  this.brandColor,
  this.instagramHandle,
  this.youtubeUrl,
  this.thumbnail,
  this.homeGrid,
  this.pickupLocations,
  this.shippingServices,
  this.paymentGateways,
});