makeMove method

void makeMove (String from, String to)

Makes move on the board

Implementation

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