toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bannedContents = this.bannedContents;
final bannedContentsInAgentResponse = this.bannedContentsInAgentResponse;
final bannedContentsInUserInput = this.bannedContentsInUserInput;
final disregardDiacritics = this.disregardDiacritics;
final matchType = this.matchType;
return {
'bannedContents': ?bannedContents,
'bannedContentsInAgentResponse': ?bannedContentsInAgentResponse,
'bannedContentsInUserInput': ?bannedContentsInUserInput,
'disregardDiacritics': ?disregardDiacritics,
'matchType': ?matchType,
};
}