utf8Decode static method

String utf8Decode(
  1. List<int> source
)

Implementation

static String utf8Decode(List<int> source) {
  final string = converter.utf8.decode(source);

  return string;
}