toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final addressValue = this.addressValue;
final booleanValue = this.booleanValue;
final dateValue = this.dateValue;
final datetimeValue = this.datetimeValue;
final floatValue = this.floatValue;
final integerValue = this.integerValue;
final moneyValue = this.moneyValue;
final signatureValue = this.signatureValue;
final text = this.text;
return {
'addressValue': ?addressValue,
'booleanValue': ?booleanValue,
'dateValue': ?dateValue,
'datetimeValue': ?datetimeValue,
'floatValue': ?floatValue,
'integerValue': ?integerValue,
'moneyValue': ?moneyValue,
'signatureValue': ?signatureValue,
'text': ?text,
};
}