setColWidth method
Set the width of a specific column in pixels.
Implementation
Future<void> setColWidth(int col, int width) async {
await VolvoxGridService.DefineColumns(DefineColumnsRequest()
..gridId = _gridId
..columns.add(ColumnDef()
..index = col
..width = width));
notifyListeners();
}