Position constructor

const Position(
  1. Board board,
  2. Link leaf,
  3. List<Link> links,
  4. int nWins,
  5. int nDraws,
  6. int nLosses,
  7. int nLines,
  8. Score score,
  9. int nLink,
  10. int level,
  11. int flag,
  12. int nPlayerBestpaths,
  13. int nOpponentBestpaths,
)

Implementation

const Position(
  this.board,
  this.leaf,
  this.links,
  this.nWins,
  this.nDraws,
  this.nLosses,
  this.nLines,
  this.score,
  this.nLink,
  this.level,
  this.flag,
  this.nPlayerBestpaths,
  this.nOpponentBestpaths,
);