CollectUserFeedbackRequest constructor

CollectUserFeedbackRequest({
  1. Map<String, Object> custom = const {},
  2. required int rating,
  3. String? reason,
  4. required String sdk,
  5. required String sdkVersion,
  6. required String userSessionId,
})

Returns a new CollectUserFeedbackRequest instance.

Implementation

CollectUserFeedbackRequest({
  this.custom = const {},
  required this.rating,
  this.reason,
  required this.sdk,
  required this.sdkVersion,
  required this.userSessionId,
});