ConcurrentBufferAndroid.fromAddress constructor

ConcurrentBufferAndroid.fromAddress(
  1. int ptr
)

Implementation

ConcurrentBufferAndroid.fromAddress(int ptr) {
  cBuf = Pointer<Void>.fromAddress(ptr);
  _length = bufferGetSize(cBuf);
}