toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (addressValue != null) 'addressValue': addressValue!,
  if (booleanValue != null) 'booleanValue': booleanValue!,
  if (dateValue != null) 'dateValue': dateValue!,
  if (datetimeValue != null) 'datetimeValue': datetimeValue!,
  if (floatValue != null) 'floatValue': floatValue!,
  if (integerValue != null) 'integerValue': integerValue!,
  if (moneyValue != null) 'moneyValue': moneyValue!,
  if (signatureValue != null) 'signatureValue': signatureValue!,
  if (text != null) 'text': text!,
};