BadgeConditionSchema constructor

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

Returns a new BadgeConditionSchema instance.

Implementation

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