exists property

BooleanDelta? get exists

The change in exists, if any.

Implementation

BooleanDelta? get exists => _wrapped.exists?.let(BooleanDelta.fromJS);
set exists (BooleanDelta? v)

Implementation

set exists(BooleanDelta? v) {
  _wrapped.exists = v?.toJS;
}