CipherParams constructor

const CipherParams(
  1. {required Uint8List key,
  2. required Uint8List iv,
  3. required Uint8List? salt,
  4. required Uint8List cipherText,
  5. required Mode mode,
  6. required Padding? padding}
)

Implementation

const CipherParams({
  required this.key,
  required this.iv,
  required this.salt,
  required this.cipherText,
  required this.mode,
  required this.padding,
});