notNull property

MutableCell<T> get notNull

MutableCell version of NullCheckExtension.notNull.

Implementation

MutableCell<T> get notNull =>
    (this as ValueCell<T?>).notNull.mutableApply((p0) => p0, (p0) {
      value = p0;
    }, key: _MutableNullCheckExtensionKey(this));