ClickBehaviorEvent constructor

ClickBehaviorEvent({
  1. required String behaviorType,
  2. required int clickCount,
  3. required Duration timeWindow,
  4. required Offset position,
  5. String? route,
  6. String? texts,
})

Implementation

ClickBehaviorEvent({
  required this.behaviorType,
  required this.clickCount,
  required this.timeWindow,
  required this.position,
  this.route,
  this.texts,
}) : _timestamp = DateTime.now().toUtc();