empty constant
Board
const empty
Empty board.
Implementation
static const empty = Board(
occupied: SquareSet.empty,
promoted: SquareSet.empty,
white: SquareSet.empty,
black: SquareSet.empty,
pawns: SquareSet.empty,
knights: SquareSet.empty,
bishops: SquareSet.empty,
rooks: SquareSet.empty,
queens: SquareSet.empty,
kings: SquareSet.empty,
);