AesDecryptReq constructor

const AesDecryptReq({
  1. required Uint8List key,
  2. required Uint8List iv,
  3. required Uint8List cipherText,
})

Implementation

const AesDecryptReq({
  required this.key,
  required this.iv,
  required this.cipherText,
});