UniqueGiftModel constructor
const
UniqueGiftModel({})
Creates a new UniqueGiftModel object.
Implementation
const factory UniqueGiftModel({
/// Name of the model
@JsonKey(name: 'name') required String name,
/// The sticker that represents the unique gift
@JsonKey(name: 'sticker') required Sticker sticker,
/// The number of unique gifts that receive this model for every 1000 gifts upgraded
@JsonKey(name: 'rarity_per_mille') required int rarityPerMille,
}) = _UniqueGiftModel;