Item constructor

Item({
  1. ItemAcl? acl,
  2. ItemContent? content,
  3. String? itemType,
  4. ItemMetadata? metadata,
  5. String? name,
  6. String? payload,
  7. String? queue,
  8. ItemStatus? status,
  9. ItemStructuredData? structuredData,
  10. String? version,
})

Implementation

Item({
  this.acl,
  this.content,
  this.itemType,
  this.metadata,
  this.name,
  this.payload,
  this.queue,
  this.status,
  this.structuredData,
  this.version,
});