ProductAttribute constructor

ProductAttribute({
  1. int? id,
  2. String? name,
  3. String? slug,
  4. String? type,
  5. String? orderBy,
  6. bool? hasArchives,
  7. Links? links,
})

Implementation

ProductAttribute(
    {this.id,
    this.name,
    this.slug,
    this.type,
    this.orderBy,
    this.hasArchives,
    this.links});