makeMove method

void makeMove(
  1. String move
)

Implementation

void makeMove(String move) {
  gameLogic.move(move);
  refreshBoard();
}