InteractionContentEventBody constructor

InteractionContentEventBody({
  1. required Interaction interaction,
  2. required String regionName,
  3. required String contentName,
  4. required String target,
  5. String? payload,
  6. double? relativePositionX,
  7. double? relativePositionY,
  8. double? absolutePositionX,
  9. double? absolutePositionY,
  10. String? sdkVersion,
  11. String? sdkId,
})

Implementation

InteractionContentEventBody({
  required this.interaction,
  required this.regionName,
  required this.contentName,
  required this.target,
  this.payload,
  this.relativePositionX,
  this.relativePositionY,
  this.absolutePositionX,
  this.absolutePositionY,
  this.sdkVersion,
  this.sdkId,
});