ob property
T
get
ob
Notify the host to rebuild related consume widget and then return the underlying object.
Suitable for class type _value, like List, Map, Set, and class.
ex. var is a int List: <int>[],
var.ob.add(1); // to notify the host to rebuild related consume widget.
Implementation
T get ob {
publishRxAspects();
_keepPersist();
return _value;
}