TroubleshootingHit constructor

TroubleshootingHit(
  1. String aVisitorId,
  2. String label,
  3. Map<String, String> speceficCustomFields
)

Implementation

TroubleshootingHit(String aVisitorId, this.label, this.speceficCustomFields)
    : super() {
  // Set the type of hit
  type = HitCategory.TROUBLESHOOTING;
  // Set the visitorId
  visitorId = aVisitorId;
  // Update level log according to label
  _updateLogLevel();
  // Set the commun infos
  _fillTheCommunFieldsAndCompleteWithCustom();
}