toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final exactMatch = this.exactMatch;
  final name = this.name;
  final presentMatch = this.presentMatch;
  final regexMatch = this.regexMatch;
  return {
    'exactMatch': ?exactMatch,
    'name': ?name,
    'presentMatch': ?presentMatch,
    'regexMatch': ?regexMatch,
  };
}