toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final resultPerPage = this.resultPerPage;
final startIndex = this.startIndex;
final totalResults = this.totalResults;
return {
'resultPerPage': ?resultPerPage,
'startIndex': ?startIndex,
'totalResults': ?totalResults,
};
}