makeMoveWithNormalNotation method

void makeMoveWithNormalNotation(
  1. String move
)

Makes move on the board

Implementation

void makeMoveWithNormalNotation(String move) {
  game.move(move);
  notifyListeners();
}