setRowOutlineLevel method
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));
}