ProductAttributeTermsModel constructor

ProductAttributeTermsModel({
  1. int? id,
  2. String? name,
  3. String? slug,
  4. String? description,
  5. int? menu_order,
  6. int? count,
  7. int? attributes_id,
})

Implementation

ProductAttributeTermsModel({
  this.id,
  this.name,
  this.slug,
  this.description,
  this.menu_order,
  this.count,
  this.attributes_id,
});