Decrypt the packet data.
Future<String> decrypt() async { if (encrypted == null) throw Exception('No encrypted data'); final k = Kaalka(time: _parseTimeKey(timeKey)); return await k.decrypt(encrypted!); }