setConsent method

  1. @override
void setConsent(
  1. bool isConsent
)
override

Implementation

@override
void setConsent(bool isConsent) {
  // Create the hit of consent
  Consent hitConsent = Consent(hasConsented: isConsent);
  // Send hit ...
  visitor.sendHit(hitConsent);
}