BugsnagThread constructor

BugsnagThread({
  1. String? id,
  2. String? name,
  3. String? state,
  4. bool? isErrorReportingThread,
  5. BugsnagErrorType type = BugsnagErrorType.dart,
  6. required BugsnagStacktrace stacktrace,
})

Implementation

BugsnagThread({
  this.id,
  this.name,
  this.state,
  bool? isErrorReportingThread,
  this.type = BugsnagErrorType.dart,
  required BugsnagStacktrace stacktrace,
})  : _stacktrace = stacktrace,
      isErrorReportingThread = isErrorReportingThread == true;