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