GiveGoldDataSchema constructor

GiveGoldDataSchema({
  1. required CooldownSchema cooldown,
  2. required int quantity,
  3. required CharacterSchema receiverCharacter,
  4. required CharacterSchema character,
})

Returns a new GiveGoldDataSchema instance.

Implementation

GiveGoldDataSchema({
  required this.cooldown,
  required this.quantity,
  required this.receiverCharacter,
  required this.character,
});