CraftSchema constructor

CraftSchema({
  1. CraftSkill? skill,
  2. int? level,
  3. List<SimpleItemSchema> items = const [],
  4. int? quantity,
})

Returns a new CraftSchema instance.

Implementation

CraftSchema({
  this.skill,
  this.level,
  this.items = const [],
  this.quantity,
});