buildPandoraDecrypter function Null safety

Converter<String, Uint8List> buildPandoraDecrypter(
  1. String key
)

Builds a request/response decrypter using the given key.

Implementation

Converter<String, Uint8List> buildPandoraDecrypter(String key) =>
    const HexDecoder().cast<String, List<int>>().fuse<Uint8List>(
          BlowfishECB(Uint8List.fromList(utf8.encode(key))).decoder,
        );