toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.deliverable != null) {
json[r'deliverable'] = this.deliverable;
} else {
json[r'deliverable'] = null;
}
if (this.reject != null) {
json[r'reject'] = this.reject;
} else {
json[r'reject'] = null;
}
if (this.unknown != null) {
json[r'unknown'] = this.unknown;
} else {
json[r'unknown'] = null;
}
if (this.suppressed != null) {
json[r'suppressed'] = this.suppressed;
} else {
json[r'suppressed'] = null;
}
return json;
}