toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dictionary = this.dictionary;
final excludeByHotword = this.excludeByHotword;
final excludeByImageFindings = this.excludeByImageFindings;
final excludeInfoTypes = this.excludeInfoTypes;
final matchingType = this.matchingType;
final regex = this.regex;
return {
'dictionary': ?dictionary,
'excludeByHotword': ?excludeByHotword,
'excludeByImageFindings': ?excludeByImageFindings,
'excludeInfoTypes': ?excludeInfoTypes,
'matchingType': ?matchingType,
'regex': ?regex,
};
}