writeRawBuffer method

  1. @Deprecated('Please encode this buffer type as a list, this method will be removed in future versions')
void writeRawBuffer(
  1. Uint8Buffer buff
)

Raw byte buffer writer. No encoding is added to the buffer, it goes into the output stream as is.

Implementation

@Deprecated('Please encode this buffer type as a list, this method will be removed in future versions')
void writeRawBuffer(typed.Uint8Buffer buff) {
  _writeRawBuffer(buff);
  _builderHookImpl(false);
}