Disabling/Enabling APM
Turn App Performance Monitoring off or on in your Flutter app with one call after SDK initialization, and what happens to data already on the device.
// Enable APM
APM.setEnabled(true);
// Disable APM
APM.setEnabled(false);Last updated