TrackContentInteractionEventArgs constructor

TrackContentInteractionEventArgs({
  1. required String contentId,
  2. required String interactionType,
  3. required String contentType,
  4. String? contentTitle,
  5. String? contentUrl,
  6. int? durationWatched,
})

Implementation

TrackContentInteractionEventArgs({
  required this.contentId,
  required this.interactionType,
  required this.contentType,
  this.contentTitle,
  this.contentUrl,
  this.durationWatched,
});