Status constructor

const Status({
  1. required int game,
  2. required int round,
  3. required bool turn,
  4. required int hand,
  5. required int floor,
  6. required List<int> seed,
})

Implementation

const Status({
  required this.game,
  required this.round,
  required this.turn,
  required this.hand,
  required this.floor,
  required this.seed,
});