SharedPointer<T>.fromAddress constructor

SharedPointer<T>.fromAddress(
  1. SharedPointerAddress address
)

Implementation

SharedPointer.fromAddress(this.address) {
  var initAddress = _initializeFromAddress(address);
  if (initAddress != address) {
    throw StateError(
        "Initialization returned a different address: $initAddress != $address");
  }
}