UnequipSchema constructor

UnequipSchema({
  1. required ItemSlot slot,
  2. int quantity = 1,
})

Returns a new UnequipSchema instance.

Implementation

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