EntitlementAiModel constructor

const EntitlementAiModel({
  1. int? dailyCap,
  2. int? weeklyCap,
  3. int? totalCap,
  4. @Default(0) int boost,
})

Implementation

const factory EntitlementAiModel({
  int? dailyCap,
  int? weeklyCap,

  /// Non-null only for trial users: total AI messages allowed for the
  /// entire trial period (e.g. 50). Null = no total cap.
  int? totalCap,
  @Default(0) int boost,
}) = _EntitlementAiModel;