SemiException constructor

const SemiException(
  1. String errorCode, {
  2. String? message,
  3. dynamic error,
  4. StackTrace? stackTrace,
  5. DateTime? time,
})

Implementation

const SemiException(
  this.errorCode, {
  this.message,
  this.error,
  this.stackTrace,
  this.time,
});