Folder constructor

Folder({
  1. String? createTime,
  2. String? deleteTime,
  3. String? displayName,
  4. String? etag,
  5. String? name,
  6. String? parent,
  7. String? state,
  8. Map<String, String>? tags,
  9. String? updateTime,
})

Implementation

Folder({
  this.createTime,
  this.deleteTime,
  this.displayName,
  this.etag,
  this.name,
  this.parent,
  this.state,
  this.tags,
  this.updateTime,
});