DriveItem constructor

DriveItem({
  1. String? id,
  2. String? name,
  3. String? webUrl,
  4. int? size,
  5. ItemReference? parentReference,
  6. String? createdDateTime,
  7. String? lastModifiedDateTime,
  8. IdentitySet? createdBy,
  9. IdentitySet? lastModifiedBy,
  10. File? file,
  11. Folder? folder,
  12. String? eTag,
  13. String? contentType,
})

Creates a new DriveItem instance.

Implementation

DriveItem({
  this.id,
  this.name,
  this.webUrl,
  this.size,
  this.parentReference,
  this.createdDateTime,
  this.lastModifiedDateTime,
  this.createdBy,
  this.lastModifiedBy,
  this.file,
  this.folder,
  this.eTag,
  this.contentType,
});