text static method

String text(
  1. Uint8List compressed
)

Decompresses a Uint8List that was compressed using Shrink.text and converts it back to a string.

Returns the original UTF-8 encoded string.

Implementation

static String text(Uint8List compressed) {
  return restoreText(compressed);
}