intermediate

This commit is contained in:
Fabian Freund
2025-01-07 00:06:31 +01:00
parent ea0880b97a
commit 4a2191b01d
84 changed files with 2655 additions and 1383 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ class EquatableCollection<T> with FastEquatable {
EquatableCollection(this.collection, {required this.immutable})
: assert(
collection is Map || collection is Iterable,
collection is Map || collection is Iterable || collection == null,
'Collection type not supported',
);