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