toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (booleanValue != null) 'booleanValue': booleanValue!,
if (doubleArray != null) 'doubleArray': doubleArray!,
if (doubleValue != null) 'doubleValue': doubleValue!,
if (intArray != null) 'intArray': intArray!,
if (intValue != null) 'intValue': intValue!,
if (protoValue != null) 'protoValue': protoValue!,
if (stringArray != null) 'stringArray': stringArray!,
if (stringValue != null) 'stringValue': stringValue!,
};