WooProductCategory constructor

WooProductCategory({
  1. int? id,
  2. String? name,
  3. String? slug,
  4. int? parent,
  5. String? description,
  6. String? display,
  7. WooProductCategoryImage? image,
  8. int? menuOrder,
  9. int? count,
  10. WooProductCategoryLinks? links,
})

Implementation

WooProductCategory(
    {this.id,
    this.name,
    this.slug,
    this.parent,
    this.description,
    this.display,
    this.image,
    this.menuOrder,
    this.count,
    this.links});