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