ProductShippingClass constructor

ProductShippingClass({
  1. int? id,
  2. String? name,
  3. String? slug,
  4. String? description,
  5. int? count,
  6. Links? links,
})

Implementation

ProductShippingClass(
    {this.id,
    this.name,
    this.slug,
    this.description,
    this.count,
    this.links});