AccountQuota constructor

AccountQuota({
  1. String? accountQuotaName,
  2. int? max,
  3. int? used,
})

Implementation

AccountQuota({
  this.accountQuotaName,
  this.max,
  this.used,
});