loadTable method
Load a row-major typed matrix in one RPC.
values should be rows * cols long in row-major order.
Implementation
Future<void> loadTable(
int rows,
int cols,
List<CellValue> values, {
bool atomic = false,
}) async {
await VolvoxGridService.LoadTable(LoadTableRequest()
..gridId = _gridId
..rows = rows
..cols = cols
..values.addAll(values)
..atomic = atomic);
notifyListeners();
}