BuglyException constructor
BuglyException(
- ExceptionType type,
- Object exception,
- StackTrace? stackTrace
Implementation
BuglyException(this.type, this.exception, this.stackTrace) {
name = _getExceptionName();
message = _exceptionAsString();
stack = '$stackTrace';
address = stack.split('\n')[0];
messageId = BaseInfo.generateUUID;
}