utf8string property

String utf8string

Implementation

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