toJson method

Map<String, dynamic> toJson()

Implementation

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