DartAesCbc constructor

const DartAesCbc({
  1. required MacAlgorithm macAlgorithm,
  2. int secretKeyLength = 32,
})

Implementation

const DartAesCbc({required this.macAlgorithm, this.secretKeyLength = 32})
    : assert(secretKeyLength == 16 ||
          secretKeyLength == 24 ||
          secretKeyLength == 32),
      super.constructor();