bytesToStr method

String bytesToStr (Uint8List bytes)

Implementation

static String bytesToStr(Uint8List bytes) {
  return Utf8Decoder().convert(bytes.toList());
}