toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (booleanValue != null) 'booleanValue': booleanValue!,
if (datetimeValue != null) 'datetimeValue': datetimeValue!,
if (enumValue != null) 'enumValue': enumValue!,
if (floatValue != null) 'floatValue': floatValue!,
if (intValue != null) 'intValue': intValue!,
if (stringValue != null) 'stringValue': stringValue!,
if (timestampValue != null) 'timestampValue': timestampValue!,
};