toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final contains = this.contains;
  final negation = this.negation;
  final operator = this.operator;
  final remarketingListId = this.remarketingListId;
  final type = this.type;
  final value = this.value;
  final variableFriendlyName = this.variableFriendlyName;
  final variableName = this.variableName;
  return {
    'contains': ?contains,
    'negation': ?negation,
    'operator': ?operator,
    'remarketingListId': ?remarketingListId,
    'type': ?type,
    'value': ?value,
    'variableFriendlyName': ?variableFriendlyName,
    'variableName': ?variableName,
  };
}