Sku constructor

Sku({
  1. Category? category,
  2. String? description,
  3. GeoTaxonomy? geoTaxonomy,
  4. String? name,
  5. List<PricingInfo>? pricingInfo,
  6. String? serviceProviderName,
  7. List<String>? serviceRegions,
  8. String? skuId,
})

Implementation

Sku({
  this.category,
  this.description,
  this.geoTaxonomy,
  this.name,
  this.pricingInfo,
  this.serviceProviderName,
  this.serviceRegions,
  this.skuId,
});