ProductAttributeTermsModel constructor

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

Implementation

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