SharedPointerBytes<T>.fromAddress constructor

SharedPointerBytes<T>.fromAddress(
  1. int allocatedBytesLength,
  2. int bytesPerValue,
  3. bool initializeZeroed,
  4. SharedPointerAddress address,
)

Implementation

SharedPointerBytes.fromAddress(this.allocatedBytesLength, this.bytesPerValue,
    this.initializeZeroed, SharedPointerAddress address)
    : length = allocatedBytesLength ~/ bytesPerValue,
      super.fromAddress(address);