NPCItem constructor

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

Returns a new NPCItem instance.

Implementation

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