RaidDamageRewardSchema constructor

RaidDamageRewardSchema({
  1. required int damagePerReward,
  2. int? maxRewards,
  3. List<SimpleItemSchema> items = const [],
})

Returns a new RaidDamageRewardSchema instance.

Implementation

RaidDamageRewardSchema({
  required this.damagePerReward,
  this.maxRewards,
  this.items = const [],
});