decode method

String decode (List<int> encoded)

Decodes encoded data.

The input is decoded as if by decoder.convert.

Implementation

String decode(List<int> encoded) => decoder.convert(encoded);