copyWith method
Implementation
SentryFeedback copyWith({
String? message,
String? contactEmail,
String? name,
String? replayId,
String? url,
SentryId? associatedEventId,
Map<String, dynamic>? unknown,
}) =>
SentryFeedback(
message: message ?? this.message,
contactEmail: contactEmail ?? this.contactEmail,
name: name ?? this.name,
replayId: replayId ?? this.replayId,
url: url ?? this.url,
associatedEventId: associatedEventId ?? this.associatedEventId,
unknown: unknown ?? this.unknown,
);