ResourceMetadata constructor

ResourceMetadata({
  1. String? id,
  2. String? name,
  3. String? originalName,
  4. UserMetadata? owner,
  5. String? parentId,
  6. ResourceType? type,
  7. String? versionId,
})

Implementation

ResourceMetadata({
  this.id,
  this.name,
  this.originalName,
  this.owner,
  this.parentId,
  this.type,
  this.versionId,
});