setRowOutlineLevel method

Future<void> setRowOutlineLevel(
  1. int row,
  2. int level
)

Set the outline level for a specific row.

Implementation

Future<void> setRowOutlineLevel(int row, int level) async {
  await VolvoxGridService.DefineRows(DefineRowsRequest()
    ..gridId = _gridId
    ..rows.add(RowDef()
      ..index = row
      ..outlineLevel = level));
}