toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (booleanValue != null) 'booleanValue': booleanValue!,
if (dateValue != null) 'dateValue': dateValue!,
if (dayOfWeekValue != null) 'dayOfWeekValue': dayOfWeekValue!,
if (floatValue != null) 'floatValue': floatValue!,
if (integerValue != null) 'integerValue': integerValue!,
if (stringValue != null) 'stringValue': stringValue!,
if (timeValue != null) 'timeValue': timeValue!,
if (timestampValue != null) 'timestampValue': timestampValue!,
};