EquipSchema constructor

EquipSchema({
  1. required String code,
  2. required ItemSlot slot,
  3. int quantity = 1,
})

Returns a new EquipSchema instance.

Implementation

EquipSchema({
  required this.code,
  required this.slot,
  this.quantity = 1,
});