toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final matchCase = this.matchCase;
final searchByRegex = this.searchByRegex;
final text = this.text;
return {
'matchCase': ?matchCase,
'searchByRegex': ?searchByRegex,
'text': ?text,
};
}