Folder constructor

Folder({
  1. String? createTime,
  2. String? displayName,
  3. String? lifecycleState,
  4. String? name,
  5. String? parent,
  6. Map<String, String>? tags,
})

Implementation

Folder({
  this.createTime,
  this.displayName,
  this.lifecycleState,
  this.name,
  this.parent,
  this.tags,
});