decodeText static method

String decodeText(
  1. List<int> array
)

Implementation

static String decodeText(List<int> array) {
  final s = const convert.Utf8Decoder().convert(array);
  return s;
}