toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dateTimeValue != null) 'dateTimeValue': dateTimeValue!,
  if (dateValue != null) 'dateValue': dateValue!,
  if (decimalValue != null) 'decimalValue': decimalValue!,
  if (intValue != null) 'intValue': intValue!,
  if (moneyValue != null) 'moneyValue': moneyValue!,
  if (stringValue != null) 'stringValue': stringValue!,
};