toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bannedPhraseMatch = this.bannedPhraseMatch;
  final decision = this.decision;
  final matchedBannedPhrase = this.matchedBannedPhrase;
  return {
    'bannedPhraseMatch': ?bannedPhraseMatch,
    'decision': ?decision,
    'matchedBannedPhrase': ?matchedBannedPhrase,
  };
}