bufferToLongString<T> static method

String bufferToLongString<T>(
  1. Buffer<T> buffer
)

Converts a Buffer to a string like Buffer.toString.

The string will be long and detailed, suitable for debugging, and even if the dimensions of the buffer are large, the buffer will not be truncated, which may result in a very long string for large buffers.

Implementation

static String bufferToLongString<T>(Buffer<T> buffer) {
  return _bufferToStringImpl(buffer);
}