ExceptionDetails constructor

ExceptionDetails({
  1. String? evaluateName,
  2. String? fullTypeName,
  3. List<ExceptionDetails>? innerException,
  4. String? message,
  5. String? stackTrace,
  6. String? typeName,
})

Implementation

ExceptionDetails({
  this.evaluateName,
  this.fullTypeName,
  this.innerException,
  this.message,
  this.stackTrace,
  this.typeName,
});