Drive constructor

Drive({
  1. String? id,
  2. String? name,
  3. String? driveType,
  4. IdentitySet? owner,
  5. DriveQuota? quota,
  6. String? webUrl,
})

Creates a new Drive instance.

Implementation

Drive({
  this.id,
  this.name,
  this.driveType,
  this.owner,
  this.quota,
  this.webUrl,
});