toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (contactInfo != null) 'contactInfo': contactInfo!,
      if (contactName != null) 'contactName': contactName!,
      if (contactTitle != null) 'contactTitle': contactTitle!,
      if (contactType != null) 'contactType': contactType!,
      if (signatureUserProfileId != null)
        'signatureUserProfileId': signatureUserProfileId!,
    };