toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alwaysUseDefaultValue = this.alwaysUseDefaultValue;
final defaultCurrencyCode = this.defaultCurrencyCode;
final defaultValue = this.defaultValue;
return {
'alwaysUseDefaultValue': ?alwaysUseDefaultValue,
'defaultCurrencyCode': ?defaultCurrencyCode,
'defaultValue': ?defaultValue,
};
}