toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final booleanValue = this.booleanValue;
final dateValue = this.dateValue;
final dayOfWeekValue = this.dayOfWeekValue;
final floatValue = this.floatValue;
final integerValue = this.integerValue;
final stringValue = this.stringValue;
final timeValue = this.timeValue;
final timestampValue = this.timestampValue;
return {
'booleanValue': ?booleanValue,
'dateValue': ?dateValue,
'dayOfWeekValue': ?dayOfWeekValue,
'floatValue': ?floatValue,
'integerValue': ?integerValue,
'stringValue': ?stringValue,
'timeValue': ?timeValue,
'timestampValue': ?timestampValue,
};
}