Disabling/Enabling APM
This page explains the API to disable and enable App Performance Monitoring (APM) on Flutter.
You can disable APM by calling the following API right after initializing the SDK. This completely prevents the SDK from collecting any performance data or executing any APM related logic.
// Enable APM
APM.setEnabled(true);
// Disable APM
APM.setEnabled(false);Last updated