TagBody constructor

TagBody({
  1. String? name,
  2. String? slug,
  3. String? description,
  4. String? type,
  5. String? parentId,
  6. String? photoId,
  7. String? storeId,
})

Implementation

TagBody({
  this.name,
  this.slug,
  this.description,
  this.type,
  this.parentId,
  this.photoId,
  this.storeId,
});