SentryFeedback constructor

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

Implementation

SentryFeedback({
  required this.message,
  this.contactEmail,
  this.name,
  this.replayId,
  this.url,
  this.associatedEventId,
  this.unknown,
});