setColSticky method
Set sticky edge for a column.
Implementation
Future<void> setColSticky(int col, StickyEdge edge) async {
await VolvoxGridService.DefineColumns(DefineColumnsRequest()
..gridId = _gridId
..columns.add(ColumnDef()
..index = col
..sticky = edge));
notifyListeners();
}