toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'count'] = this.count;
json[r'title'] = this.title;
json[r'previous'] = this.previous;
json[r'next'] = this.next;
json[r'results'] = this.results;
return json;
}