toJson method

Map<String, dynamic> toJson()

Implementation

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