Salsa20Encryption constructor

Salsa20Encryption({
  1. required String encryptionKey,
})

Constructor for Salsa20Encryption class.

encryptionKey is the key used for encryption. It must be 32 characters long. accessKey is the key used to store and retrieve the encrypted value.

Implementation

Salsa20Encryption({
  required this.encryptionKey,
});