BillingLimits constructor

BillingLimits({
  1. int? bandwidth,
  2. int? storage,
  3. int? users,
  4. int? executions,
  5. int? GBHours,
  6. int? imageTransformations,
  7. int? authPhone,
  8. int? budgetLimit,
})

Implementation

BillingLimits({
  this.bandwidth,
  this.storage,
  this.users,
  this.executions,
  this.GBHours,
  this.imageTransformations,
  this.authPhone,
  this.budgetLimit,
});