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