decode static method

String? decode(
  1. Uint8List utf8
)

Decodes UTF-8 binary data back to a string.

utf8 is the UTF-8 encoded binary data to decode.

Returns the decoded string, or null if decoding fails.

Implementation

static String? decode(Uint8List utf8) {
  return coder!.decode(utf8);
}