setColAlignment method
Set the text alignment for a column.
Implementation
Future<void> setColAlignment(int col, Align alignment) async {
await VolvoxGridService.DefineColumns(DefineColumnsRequest()
..gridId = _gridId
..columns.add(ColumnDef()
..index = col
..align = alignment));
}