selectRange method
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();
}