BuglyException constructor

BuglyException(
  1. ExceptionType type,
  2. Object exception,
  3. StackTrace? stackTrace
)

Implementation

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