appendString method

void appendString(
  1. String value
)

Implementation

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