makeSan method
Returns the SAN of this Move and the updated Position.
Throws a PlayException if the move is not legal.
Implementation
(Position, String) makeSan(Move move) {
if (isLegal(move)) {
return makeSanUnchecked(move);
} else {
throw PlayException('Invalid move $move on position $fen');
}
}