FilenCrypto constructor

FilenCrypto({
  1. Random? random,
  2. AesGcmBackend? aesGcm,
})

Implementation

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