decrypt method

Future<String> decrypt()

Decrypt the packet data.

Implementation

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