GameEndConditions constructor

const GameEndConditions({
  1. EndType stalemate = EndType.draw,
  2. EndType elimination = EndType.lose,
  3. int? checkLimit,
})

Implementation

const GameEndConditions({
  this.stalemate = EndType.draw,
  this.elimination = EndType.lose,
  this.checkLimit,
});