AES constructor

AES(
  1. AESMode mode,
  2. AESPadding padding,
  3. Uint8List key,
  4. Uint8List? iv,
)

Implementation

AES(this.mode, this.padding, this.key, this.iv) {
  _init();
}