getString method

String getString(
  1. Uint8Buffer bytes
)

Decodes the bytes in the specified byte array into a string.

Implementation

String getString(typed.Uint8Buffer bytes) =>
    utf8.decoder.convert(bytes.toList());