utf8Decode function

String utf8Decode(
  1. Uint8List input
)

UncompleteDocumentation

Implementation

String utf8Decode(Uint8List input) {
  return Utf8Decoder().convert(input);
}