copyWith method
Implementation
SentryException copyWith({
String? type,
String? value,
String? module,
SentryStackTrace? stackTrace,
Mechanism? mechanism,
int? threadId,
dynamic throwable,
}) =>
SentryException(
type: type ?? this.type,
value: value ?? this.value,
module: module ?? this.module,
stackTrace: stackTrace ?? this.stackTrace,
mechanism: mechanism ?? this.mechanism,
threadId: threadId ?? this.threadId,
throwable: throwable ?? this.throwable,
unknown: unknown,
);