toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final column = this.column;
final defaultValue = this.defaultValue;
final description = this.description;
final gcRule = this.gcRule;
final highestIndexingType = this.highestIndexingType;
final lookerColumnSpec = this.lookerColumnSpec;
final mode = this.mode;
final ordinalPosition = this.ordinalPosition;
final rangeElementType = this.rangeElementType;
final subcolumns = this.subcolumns;
final type = this.type;
return {
'column': ?column,
'defaultValue': ?defaultValue,
'description': ?description,
'gcRule': ?gcRule,
'highestIndexingType': ?highestIndexingType,
'lookerColumnSpec': ?lookerColumnSpec,
'mode': ?mode,
'ordinalPosition': ?ordinalPosition,
'rangeElementType': ?rangeElementType,
'subcolumns': ?subcolumns,
'type': ?type,
};
}