SandboxGiveXPDataSchema constructor

SandboxGiveXPDataSchema({
  1. required CooldownSchema cooldown,
  2. required XPType type,
  3. required int amount,
  4. required CharacterSchema character,
})

Returns a new SandboxGiveXPDataSchema instance.

Implementation

SandboxGiveXPDataSchema({
  required this.cooldown,
  required this.type,
  required this.amount,
  required this.character,
});