toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final negative = this.negative;
  final targetingOptionId = this.targetingOptionId;
  return {
    'displayName': ?displayName,
    'negative': ?negative,
    'targetingOptionId': ?targetingOptionId,
  };
}