toMap method
Converts the ColumnState to a JSON-compatible map
Implementation
Map<String, dynamic> toMap() {
return {
'width': width,
'visible': visible,
'pinLeft': pinLeft,
'pinRight': pinRight,
'userResized': userResized,
};
}