HycopException constructor

const HycopException({
  1. required String message,
  2. int? code = unknown,
  3. Exception? exception,
  4. StackTrace? stackTrace,
})

Implementation

const HycopException({
  required this.message,
  this.code = unknown,
  this.exception,
  this.stackTrace,
});