Jonny Borges

fix

... ... @@ -34,8 +34,8 @@ class RxSet<E> extends GetListenable<Set<E>>
}
@override
bool add(E value) {
final hasAdded = value.add(value);
bool add(E val) {
final hasAdded = value.add(val);
if (hasAdded) {
refresh();
}
... ...
... ... @@ -361,7 +361,6 @@ class BindWrapper<T> extends InheritedWidget {
this.didUpdateWidget,
}) : super(key: key, child: child);
final InitBuilder<T>? init;
final bool global;
final Object? id;
... ...