SimpleNPCItemSchema constructor

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

Returns a new SimpleNPCItemSchema instance.

Implementation

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