ApiDecoder constructor

ApiDecoder({
  1. required String secretKey,
  2. required String encrypterSecretKey,
})

Implementation

ApiDecoder({
  required this.secretKey,
  required this.encrypterSecretKey,
}) {
  _encrypter = Base64Encrypter(encrypterSecretKey);
  _hmacHandler = HmacHandler(secretKey);
}