SentryThread constructor

SentryThread({
  1. int? id,
  2. String? name,
  3. bool? crashed,
  4. bool? current,
  5. SentryStackTrace? stacktrace,
})

Implementation

SentryThread({
  this.id,
  this.name,
  this.crashed,
  this.current,
  this.stacktrace,
});