ob property

T ob

Notify the host to rebuild related consumer 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 consumer widget.

Implementation

T get ob {
  publishRxAspects();
  return _value;
}