FakeCharacterSchema constructor

FakeCharacterSchema({
  1. required int level,
  2. String? weaponSlot,
  3. String? runeSlot,
  4. String? shieldSlot,
  5. String? helmetSlot,
  6. String? bodyArmorSlot,
  7. String? legArmorSlot,
  8. String? bootsSlot,
  9. String? ring1Slot,
  10. String? ring2Slot,
  11. String? amuletSlot,
  12. String? artifact1Slot,
  13. String? artifact2Slot,
  14. String? artifact3Slot,
  15. String? utility1Slot,
  16. int utility1SlotQuantity = 1,
  17. String? utility2Slot,
  18. int utility2SlotQuantity = 1,
})

Returns a new FakeCharacterSchema instance.

Implementation

FakeCharacterSchema({
  required this.level,
  this.weaponSlot,
  this.runeSlot,
  this.shieldSlot,
  this.helmetSlot,
  this.bodyArmorSlot,
  this.legArmorSlot,
  this.bootsSlot,
  this.ring1Slot,
  this.ring2Slot,
  this.amuletSlot,
  this.artifact1Slot,
  this.artifact2Slot,
  this.artifact3Slot,
  this.utility1Slot,
  this.utility1SlotQuantity = 1,
  this.utility2Slot,
  this.utility2SlotQuantity = 1,
});