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