PotEvent constructor

const PotEvent({
  1. required int number,
  2. required PotEventKind kind,
  3. required DateTime time,
  4. required int currentScope,
  5. required List<PotDescription> potDescriptions,
})

Creates a PotEvent that represents an event related to Pot.

Implementation

const PotEvent({
  required this.number,
  required this.kind,
  required this.time,
  required this.currentScope,
  required this.potDescriptions,
});