RewardItemSchema constructor

RewardItemSchema({
  1. required String code,
  2. required int quantity,
})

Returns a new RewardItemSchema instance.

Implementation

RewardItemSchema({
  required this.code,
  required this.quantity,
});