collection_change_notifier 2.0.0
collection_change_notifier: ^2.0.0 copied to clipboard
Implement change notifier for collection object e.g. List, Set and Map
2.0.0 #
- Upgrade to Dart 3 with new syntax applied.
- Majority classes are no longer belong with origin collections classes due to type scope.
- These classes will no longer implement origin class which marked as
final
, and the suggested type for compatible in2.0.0
:Affected classes Implemented collection types in 1.0.0
Suggested types for maximum compatibility ListQueueChangeNotifier
ListQueue
Queue
DoubleLinkedQueueChangeNotifier
DoubleLinkedQueue
HashMapChangeNotifier
HashMap
Map
LinkedHashMapChangeNotifier
LinkedHashMap
SplayTreeMapChangeNotifier
SplayTreeMap
HashSetChangeNotifier
HashSet
Set
LinkedHashSetChangeNotifier
LinkedHashSet
SplayTreeSetChangeNotifier
SplayTreeSet
- These classes will no longer implement origin class which marked as
1.0.0+1 #
- Implement
sort
forListChangeNotifier
1.0.0 #
- First stable release
1.0.0-pre.2 #
- Implement
fillRange
,insert
andinsertAll
methods inListChangeNotifier
1.0.0-pre.1 #
- First version that publish to
pub.dev
.
1.0.0-alpha.1 #
- First release of this package.
- Implement
List
,Map
andSet
intergation withChangeNotifier
.