toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'count'] = this.count;
json[r'next_page'] = this.nextPage;
json[r'previous_page'] = this.previousPage;
json[r'results'] = this.results;
return json;
}