NPCItem constructor

NPCItem({
  1. required String code,
  2. required String npc,
  3. required String currency,
  4. int? buyPrice,
  5. int? sellPrice,
})

Returns a new NPCItem instance.

Implementation

NPCItem({
  required this.code,
  required this.npc,
  required this.currency,
  this.buyPrice,
  this.sellPrice,
});