FernetEncryption constructor

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

Constructs a FernetEncryption instance with the given encryptionKey and accessKey.

Implementation

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