ErrorAndStackTrace constructor
ErrorAndStackTrace(
- Object error,
- StackTrace? stackTrace
Constructs an object containing both an error
and the
corresponding stackTrace
.
Implementation
ErrorAndStackTrace(this.error, this.stackTrace);