read method

  1. @override
T? read()
override

Reads a value from the Pointer memory.

Implementation

@override
T? read() {
  checkClosed();
  return readFromByteData(_byteData, 0);
}