ProductAttributeModel constructor

ProductAttributeModel({
  1. int? id,
  2. String? name,
  3. String? slug,
  4. String? type,
  5. String? order_by,
  6. bool? has_archives,
})

Implementation

ProductAttributeModel({
  this.id,
  this.name,
  this.slug,
  this.type,
  this.order_by,
  this.has_archives,
});