DriveQuota constructor

DriveQuota({
  1. int? total,
  2. int? used,
  3. int? remaining,
  4. int? allocated,
  5. String? state,
})

Creates a new DriveQuota instance.

Implementation

DriveQuota({
  this.total,
  this.used,
  this.remaining,
  this.allocated,
  this.state,
});