toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
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;
}
if (this.reason != null) {
json[r'reason'] = this.reason;
} else {
json[r'reason'] = null;
}
return json;
}