toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final doNotAssociateTerms = this.doNotAssociateTerms;
final queryTerms = this.queryTerms;
final terms = this.terms;
return {
'doNotAssociateTerms': ?doNotAssociateTerms,
'queryTerms': ?queryTerms,
'terms': ?terms,
};
}