RecyclingDataSchema constructor

RecyclingDataSchema({
  1. required CooldownSchema cooldown,
  2. required RecyclingItemsSchema details,
  3. required CharacterSchema character,
})

Returns a new RecyclingDataSchema instance.

Implementation

RecyclingDataSchema({
  required this.cooldown,
  required this.details,
  required this.character,
});