CryptoException constructor

const CryptoException({
  1. required String message,
  2. Object? cause,
  3. StackTrace? stackTrace,
})

Implementation

const CryptoException({
  required this.message,
  this.cause,
  this.stackTrace,
});