PhotoBody constructor

PhotoBody({
  1. String? name,
  2. String? description,
  3. String? alt,
  4. String? storeId,
  5. String? folderId,
  6. File? photo,
})

Implementation

PhotoBody({
  this.name,
  this.description,
  this.alt,
  this.storeId,
  this.folderId,
  this.photo,
});