stringValue property

String stringValue

String representation of value bytes

Implementation

String get stringValue => const Utf8Decoder().convert(_buffer.toList());
void stringValue=(String val)

Implementation

set stringValue(final String val) {
  _buffer
    ..clear()
    ..addAll(val.codeUnits);
}