selectRange method

Future<void> selectRange(
  1. int rowStart,
  2. int colStart,
  3. int rowEnd,
  4. int colEnd,
)

Select a rectangular range of cells.

Implementation

Future<void> selectRange(
    int rowStart, int colStart, int rowEnd, int colEnd) async {
  await VolvoxGridService.Select(_buildSingleRangeSelectRequest(
    rowStart,
    colStart,
    rowEnd: rowEnd,
    colEnd: colEnd,
  ));
  notifyListeners();
}