loadGameFromFEN method

void loadGameFromFEN(
  1. String fen, {
  2. bool notify = true,
})

Implementation

void loadGameFromFEN(final String fen, {final bool notify = true}) {
  game.load(fen);
  if (notify) {
    _notifyListeners();
  }
}