makeMove method
Makes move on the board
Implementation
void makeMove(String from, String to) {
game?.move({"from": from, "to": to});
refreshBoard == null ? this._throwNotAttachedException() : refreshBoard();
}
Makes move on the board
void makeMove(String from, String to) {
game?.move({"from": from, "to": to});
refreshBoard == null ? this._throwNotAttachedException() : refreshBoard();
}