BlogBody constructor

BlogBody({
  1. String? title,
  2. String? content,
  3. String? storeId,
  4. List<String>? photos,
  5. List<String>? tags,
})

Implementation

BlogBody({
  this.title,
  this.content,
  this.storeId,
  this.photos,
  this.tags,
});