shrink method
Compresses this string using UTF-8 encoding and zlib compression.
This method encodes the string as UTF-8, then applies zlib compression
to reduce its size. For decompression, use Uint8List.restoreText
or Restore.text.
Returns a Uint8List containing the compressed string data.
Implementation
Uint8List shrink() => utils.shrinkText(this);