toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final dictionary = this.dictionary;
final displayName = this.displayName;
final largeCustomDictionary = this.largeCustomDictionary;
final regex = this.regex;
return {
'description': ?description,
'dictionary': ?dictionary,
'displayName': ?displayName,
'largeCustomDictionary': ?largeCustomDictionary,
'regex': ?regex,
};
}