set method

HintMap set(
  1. int rank,
  2. int file,
  3. HintBuilder? widget
)

Implementation

HintMap set(int rank, int file, HintBuilder? widget) {
  board[rank-1]![file-1] = widget;
  return this;
}