setRowHeight method
Set the height of a specific row in pixels.
Implementation
Future<void> setRowHeight(int row, int height) async {
await VolvoxGridService.DefineRows(DefineRowsRequest()
..gridId = _gridId
..rows.add(RowDef()
..index = row
..height = height));
notifyListeners();
}