Skip to content
This repository was archived by the owner on Feb 4, 2024. It is now read-only.

Commit 2abd2fa

Browse files
committed
🚨 fix linter warnings
1 parent b959dc3 commit 2abd2fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bin/src/models/item_list.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ class ItemList<E> extends DelegatingList<E>
55
with EquatableMixin
66
implements List<E> {
77
const ItemList(
8-
List<E> items, {
8+
super.items, {
99
this.hasMore = false,
1010
this.quotaMax = 0,
1111
this.quotaRemaining = 0,
12-
}) : super(items);
12+
});
1313

1414
final bool hasMore;
1515
final int quotaMax;

0 commit comments

Comments
 (0)