executeAdvancedInstruction method

void executeAdvancedInstruction(
  1. String key,
  2. String value
)

Use only if directed to by your Client Success Manager.

Implementation

void executeAdvancedInstruction(String key, String value) {
  try {
    if (key == "INTERNAL_UNCONFIGURE") {
      _deeplinkCallbacks.clear();
      _deeplinkCallbackCount = 0;
      _attributionCallback = null;
    }
    _channel.invokeMethod(
        "executeAdvancedInstruction", {"key": key, "value": value});
  } catch (e) {
    print("Kochava/Tracker/Flutter Error: executeAdvancedInstruction: $e");
  }
}