toJson method

Map<String, dynamic> toJson()

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,
  };
}