toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.matched != null) {
json[r'matched'] = this.matched;
} else {
json[r'matched'] = null;
}
if (this.matchType != null) {
json[r'match_type'] = this.matchType;
} else {
json[r'match_type'] = null;
}
if (this.matchValue != null) {
json[r'match_value'] = this.matchValue;
} else {
json[r'match_value'] = null;
}
return json;
}