copyWith method

SentryFeedback copyWith({
  1. String? message,
  2. String? contactEmail,
  3. String? name,
  4. String? replayId,
  5. String? url,
  6. SentryId? associatedEventId,
  7. Map<String, dynamic>? unknown,
})

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,
    );