toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (boolValue != null) 'boolValue': boolValue!,
if (durationValue != null) 'durationValue': durationValue!,
if (floatValue != null) 'floatValue': floatValue!,
if (int64Value != null) 'int64Value': int64Value!,
if (javaClassValue != null) 'javaClassValue': javaClassValue!,
if (key != null) 'key': key!,
if (label != null) 'label': label!,
if (namespace != null) 'namespace': namespace!,
if (shortStrValue != null) 'shortStrValue': shortStrValue!,
if (strValue != null) 'strValue': strValue!,
if (timestampValue != null) 'timestampValue': timestampValue!,
if (url != null) 'url': url!,
};