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