setSharingFilterForPartners method

void setSharingFilterForPartners(
  1. List<String> partners
)

The sharing filter blocks the sharing of S2S events via postbacks/API with integrated partners and other third-party integrations. Use the filter to fulfill regulatory requirements like GDPR and CCPA, to comply with user opt-out mechanisms, and for other business logic reasons.

Implementation

void setSharingFilterForPartners(List<String> partners) async {
  _methodChannel.invokeMethod("setSharingFilterForPartners", partners);
}