RecyclingItemsSchema constructor

RecyclingItemsSchema({
  1. List<DropSchema> items = const [],
  2. bool enhanced = false,
  3. int gold = 0,
})

Returns a new RecyclingItemsSchema instance.

Implementation

RecyclingItemsSchema({
  this.items = const [],
  this.enhanced = false,
  this.gold = 0,
});