Item constructor

Item({
  1. required String name,
  2. required Paragraph description,
  3. Paragraph? effects,
  4. Map<Currency, int>? cost,
})

Implementation

Item(
    {required this.name, required this.description, this.effects, this.cost});