toJson method
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,
};
}