@@ -264,7 +264,7 @@ class GhIssueScreen extends StatelessWidget {
264
264
return LongListPayload (
265
265
header: res,
266
266
totalCount: issue.timelineItems.totalCount,
267
- cursor: issue.timelineItems.pageInfo.endCursor! ,
267
+ cursor: issue.timelineItems.pageInfo.endCursor,
268
268
leadingItems: issue.timelineItems.nodes! .toList (),
269
269
trailingItems: [],
270
270
);
@@ -274,7 +274,7 @@ class GhIssueScreen extends StatelessWidget {
274
274
return LongListPayload (
275
275
header: res,
276
276
totalCount: pr.timelineItems.totalCount,
277
- cursor: pr.timelineItems.pageInfo.endCursor! ,
277
+ cursor: pr.timelineItems.pageInfo.endCursor,
278
278
leadingItems: pr.timelineItems.nodes! .toList (),
279
279
trailingItems: [],
280
280
);
@@ -288,7 +288,7 @@ class GhIssueScreen extends StatelessWidget {
288
288
return LongListPayload (
289
289
header: res,
290
290
totalCount: issue.timelineItems.totalCount,
291
- cursor: issue.timelineItems.pageInfo.endCursor! ,
291
+ cursor: issue.timelineItems.pageInfo.endCursor,
292
292
leadingItems: issue.timelineItems.nodes! .toList (),
293
293
);
294
294
} else {
@@ -297,7 +297,7 @@ class GhIssueScreen extends StatelessWidget {
297
297
return LongListPayload (
298
298
header: res,
299
299
totalCount: pr.timelineItems.totalCount,
300
- cursor: pr.timelineItems.pageInfo.endCursor! ,
300
+ cursor: pr.timelineItems.pageInfo.endCursor,
301
301
leadingItems: pr.timelineItems.nodes! .toList (),
302
302
);
303
303
}
0 commit comments