utf8string property
Implementation
String get utf8string {
if (_writePos == 0) return null;
return Utf8Decoder().convert(_buf.sublist(0, _writePos));
}
String get utf8string {
if (_writePos == 0) return null;
return Utf8Decoder().convert(_buf.sublist(0, _writePos));
}