toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'totalCount'] = this.totalCount;
  json[r'pageOffset'] = this.pageOffset;
  json[r'pageSize'] = this.pageSize;
  json[r'hasNextPage'] = this.hasNextPage;
  json[r'count'] = this.count;
  json[r'items'] = this.items;
  return json;
}