text static method
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);
}