decodeBytes method

String decodeBytes(
  1. List<int> bytes
)

Decodes bytes via RC4 encryption.

However, actually calling RC4.encodeBytes and RC4.decodeBytes will give the same result.

Implementation

String decodeBytes(List<int> bytes) => utf8.decode(_crypt(bytes));