AiQuotaSnapshot constructor

const AiQuotaSnapshot({
  1. int? dailyCap,
  2. int? weeklyCap,
  3. int? totalCap,
  4. required int dayCount,
  5. required int weekCount,
  6. int totalCount = 0,
})

Implementation

const AiQuotaSnapshot({
  this.dailyCap,
  this.weeklyCap,
  this.totalCap,
  required this.dayCount,
  required this.weekCount,
  this.totalCount = 0,
});