makeEq<T, U> method
Create a cell which compares whether self
is equal to other
.
The cell should notify its observers whenever either self
or other
change their values.
Implementation
@override
ValueCell<bool> makeEq<T, U>(ValueCell<T> self, ValueCell<U> other) =>
EqCell(self, other);