Skip to content

Commit

Permalink
Remove unncessary type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
koji-1009 committed Feb 2, 2024
1 parent 1a18078 commit 430f098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/widget/sliver_paging_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class _List<PageKey, Value> extends StatelessWidget {
);
}

final List<Value> items = [...pages.map((e) => e.data).flattened];
final items = [...pages.map((e) => e.data).flattened];
if (state is LoadStateLoaded && items.isEmpty) {
return SliverPadding(
padding: padding,
Expand Down

0 comments on commit 430f098

Please sign in to comment.