appendWritebuffer method
Implementation
void appendWritebuffer(Writebuffer other) {
_bufferPosition += other._bufferPosition;
_ensureBuffer();
_bufferData.addAll(other._bufferData);
}
void appendWritebuffer(Writebuffer other) {
_bufferPosition += other._bufferPosition;
_ensureBuffer();
_bufferData.addAll(other._bufferData);
}