toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (double != null) 'double': double!,
if (int != null) 'int': int!,
if (money != null) 'money': money!,
if (string != null) 'string': string!,
};