TalsecException constructor

const TalsecException({
  1. String? message,
  2. String code = 'talsec-failure',
  3. String? stackTrace,
})

Constructs an instance of TalsecException.

Implementation

const TalsecException({
  this.message,
  this.code = 'talsec-failure',
  this.stackTrace,
});