toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final arrayType = this.arrayType;
final rangeElementType = this.rangeElementType;
final structTypes = this.structTypes;
final timestampPrecision = this.timestampPrecision;
final type = this.type;
return {
'arrayType': ?arrayType,
'rangeElementType': ?rangeElementType,
'structTypes': ?structTypes,
'timestampPrecision': ?timestampPrecision,
'type': ?type,
};
}