solve method

Future<Grid?> solve()

Implementation

Future<Grid?> solve() async {
  _solvedBoard = new Grid();
  Grid _tmpGrid = new Grid();
  _tmpGrid.pregenFirstRow();
  _solve(_tmpGrid, 0);
  return _solvedBoard;
}