toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (appMinimumVersion != null) 'appMinimumVersion': appMinimumVersion!,
  if (attributionConfidence != null)
    'attributionConfidence': attributionConfidence!,
  if (deepLink != null) 'deepLink': deepLink!,
  if (externalBrowserDestinationLink != null)
    'externalBrowserDestinationLink': externalBrowserDestinationLink!,
  if (fallbackLink != null) 'fallbackLink': fallbackLink!,
  if (invitationId != null) 'invitationId': invitationId!,
  if (isStrongMatchExecutable != null)
    'isStrongMatchExecutable': isStrongMatchExecutable!,
  if (matchMessage != null) 'matchMessage': matchMessage!,
  if (requestIpVersion != null) 'requestIpVersion': requestIpVersion!,
  if (requestedLink != null) 'requestedLink': requestedLink!,
  if (resolvedLink != null) 'resolvedLink': resolvedLink!,
  if (utmCampaign != null) 'utmCampaign': utmCampaign!,
  if (utmContent != null) 'utmContent': utmContent!,
  if (utmMedium != null) 'utmMedium': utmMedium!,
  if (utmSource != null) 'utmSource': utmSource!,
  if (utmTerm != null) 'utmTerm': utmTerm!,
};