toJson method

Map<String, dynamic> toJson()

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,
  };
}