toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (contains != null) 'contains': contains!,
  if (negation != null) 'negation': negation!,
  if (operator != null) 'operator': operator!,
  if (remarketingListId != null) 'remarketingListId': remarketingListId!,
  if (type != null) 'type': type!,
  if (value != null) 'value': value!,
  if (variableFriendlyName != null)
    'variableFriendlyName': variableFriendlyName!,
  if (variableName != null) 'variableName': variableName!,
};