GiveItemsSchema constructor

GiveItemsSchema({
  1. List<SimpleItemSchema> items = const [],
  2. required String character,
})

Returns a new GiveItemsSchema instance.

Implementation

GiveItemsSchema({
  this.items = const [],
  required this.character,
});