Quota constructor

Quota({
  1. double? limit,
  2. String? metric,
  3. String? owner,
  4. double? usage,
})

Implementation

Quota({
  this.limit,
  this.metric,
  this.owner,
  this.usage,
});