DecryptionException constructor

DecryptionException([
  1. String? message
])

Implementation

DecryptionException([String? message])
    : super(
        'An error happened while decryption: $message',
        ErrorCodes.notValidApiKey,
      );