getHint method

HintBuilder? getHint(
  1. int rank,
  2. int file
)

Implementation

HintBuilder? getHint(int rank, int file) {
   return board[rank-1]![file-1];
}