getCellsRange method
Get a rectangular range of cells in a single native round-trip.
Implementation
Future<CellsResponse> getCellsRange(
int row1,
int col1,
int row2,
int col2, {
bool includeStyle = false,
bool includeChecked = false,
bool includeTyped = false,
bool includeRichText = false,
}) {
return VolvoxGridService.GetCells(GetCellsRequest()
..gridId = _gridId
..row1 = row1
..col1 = col1
..row2 = row2
..col2 = col2
..includeStyle = includeStyle
..includeChecked = includeChecked
..includeTyped = includeTyped
..includeRichText = includeRichText);
}