FilenCrypto constructor
FilenCrypto({
- Random? random,
- AesGcmBackend? aesGcm,
Implementation
FilenCrypto({Random? random, AesGcmBackend? aesGcm})
: _random = random ?? Random.secure(),
_aesGcm = aesGcm ?? chooseAesGcmBackend();