toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final arrayElementType = this.arrayElementType;
final rangeElementType = this.rangeElementType;
final structType = this.structType;
final typeKind = this.typeKind;
return {
'arrayElementType': ?arrayElementType,
'rangeElementType': ?rangeElementType,
'structType': ?structType,
'typeKind': ?typeKind,
};
}