BillingLimits constructor

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

Implementation

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