toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final arrayElementType = this.arrayElementType;
  final code = this.code;
  final protoTypeFqn = this.protoTypeFqn;
  final structType = this.structType;
  final typeAnnotation = this.typeAnnotation;
  return {
    'arrayElementType': ?arrayElementType,
    'code': ?code,
    'protoTypeFqn': ?protoTypeFqn,
    'structType': ?structType,
    'typeAnnotation': ?typeAnnotation,
  };
}