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