QuotaLimit constructor

QuotaLimit({
  1. String name = '',
  2. String description = '',
  3. int defaultLimit = 0,
  4. int maxLimit = 0,
  5. int freeTier = 0,
  6. String duration = '',
  7. String metric = '',
  8. String unit = '',
  9. Map<String, int> values = const {},
  10. String displayName = '',
})

Implementation

QuotaLimit({
  this.name = '',
  this.description = '',
  this.defaultLimit = 0,
  this.maxLimit = 0,
  this.freeTier = 0,
  this.duration = '',
  this.metric = '',
  this.unit = '',
  this.values = const {},
  this.displayName = '',
}) : super(fullyQualifiedName);