toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final aggregateType = this.aggregateType;
  final arrayType = this.arrayType;
  final boolType = this.boolType;
  final bytesType = this.bytesType;
  final dateType = this.dateType;
  final enumType = this.enumType;
  final float32Type = this.float32Type;
  final float64Type = this.float64Type;
  final int64Type = this.int64Type;
  final mapType = this.mapType;
  final protoType = this.protoType;
  final stringType = this.stringType;
  final structType = this.structType;
  final timestampType = this.timestampType;
  return {
    'aggregateType': ?aggregateType,
    'arrayType': ?arrayType,
    'boolType': ?boolType,
    'bytesType': ?bytesType,
    'dateType': ?dateType,
    'enumType': ?enumType,
    'float32Type': ?float32Type,
    'float64Type': ?float64Type,
    'int64Type': ?int64Type,
    'mapType': ?mapType,
    'protoType': ?protoType,
    'stringType': ?stringType,
    'structType': ?structType,
    'timestampType': ?timestampType,
  };
}