setRowHeight method

Future<void> setRowHeight(
  1. int row,
  2. int height
)

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