toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (booleanValue != null) 'booleanValue': booleanValue!,
if (durationValue != null) 'durationValue': durationValue!,
if (enumValue != null) 'enumValue': enumValue!,
if (stringMapValue != null) 'stringMapValue': stringMapValue!,
if (stringSetValue != null) 'stringSetValue': stringSetValue!,
if (stringValue != null) 'stringValue': stringValue!,
};