textDecoder static method

String textDecoder(
  1. List<int> encoded
)

Implementation

static String textDecoder(List<int> encoded) {
  return utf8.decode(encoded);
}