toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final id = this.id;
final keywordPlanCampaign = this.keywordPlanCampaign;
final matchType = this.matchType;
final negative = this.negative;
final resourceName = this.resourceName;
final text = this.text;
return {
'id': ?id,
'keywordPlanCampaign': ?keywordPlanCampaign,
'matchType': ?matchType,
'negative': ?negative,
'resourceName': ?resourceName,
'text': ?text,
};
}