decompress static method

String decompress(
  1. Uint8List compressedBytes
)

Compressed bytes ကို မူလ String ပြန်ပြောင်းမယ်

Implementation

static String decompress(Uint8List compressedBytes) {
  final decompressed = gzip.decode(compressedBytes);
  return utf8.decode(decompressed);
}