sharedObjectAsync property

FutureOr<O> sharedObjectAsync

Asynchronous version of sharedObject. See isResolvingReference.

Implementation

FutureOr<O> get sharedObjectAsync {
  if (!_resolvingReference) {
    return sharedObject;
  }

  return _resolvingReferenceAsync!;
}