appendStringWithoutLength method

void appendStringWithoutLength(
  1. String value
)

Implementation

void appendStringWithoutLength(String value) {
  var utf8List = utf8.encoder.convert(value);
  _bufferPosition += utf8List.length;
  _ensureBuffer();
  _bufferData.addAll(utf8List);
}