toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final doubleValue = this.doubleValue;
final durationValue = this.durationValue;
final intValue = this.intValue;
final stringValue = this.stringValue;
final timestampValue = this.timestampValue;
return {
'boolValue': ?boolValue,
'doubleValue': ?doubleValue,
'durationValue': ?durationValue,
'intValue': ?intValue,
'stringValue': ?stringValue,
'timestampValue': ?timestampValue,
};
}