FernetDecryption constructor

FernetDecryption({
  1. required String encryptionKey,
  2. required String accessKey,
})

Constructs a FernetDecryption instance with the given encryptionKey and accessKey.

Implementation

FernetDecryption({
  required this.encryptionKey,
  required this.accessKey,
});