Resource constructor

Resource({
  1. String? displayName,
  2. List<Folder>? folders,
  3. String? name,
  4. String? parentDisplayName,
  5. String? parentName,
  6. String? projectDisplayName,
  7. String? projectName,
  8. String? type,
})

Implementation

Resource({
  this.displayName,
  this.folders,
  this.name,
  this.parentDisplayName,
  this.parentName,
  this.projectDisplayName,
  this.projectName,
  this.type,
});