asString property

String get asString

Implementation

String get asString {
  final buffer = this.buffer;
  final list = buffer.asUint8List(offsetInBytes, lengthInBytes);
  return utf8.decode(list);
}