disableTracking static method

void disableTracking(
  1. bool value
)

Method to change the Tracking state. If disabled SDK will not track any user data or state. SDK will not send any network calls except for deep linking when tracking is disabled

Implementation

static void disableTracking(bool value) async {
  return FlutterBranchSdkPlatform.instance.disableTracking(value);
}