SentryThread constructor

SentryThread({
  1. int? id,
  2. String? name,
  3. bool? crashed,
  4. bool? current,
  5. SentryStackTrace? stacktrace,
  6. Map<String, dynamic>? unknown,
})

Implementation

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