We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 163d1f2 commit b0642a5Copy full SHA for b0642a5
1 file changed
lib/Models/search_response.dart
@@ -444,7 +444,7 @@ class SearchAllResult {
444
return SearchAllResult(
445
hasResult: json['hasResult'] ?? false,
446
jumpTag: json['jumpTag'] ?? false,
447
- offset: json['offset'],
+ offset: json['offset']??0,
448
posts: json['posts'] != null ? posts : [],
449
tagRank:
450
json['tagRank'] != null ? TagInfo.fromJson(json['tagRank']) : null,
0 commit comments