Disabling/Enabling In-App Surveys
Disable or enable in-app surveys in your Flutter app with a single API, and note that disabling also stops any survey you trigger manually.
Surveys.setEnabled(false);Last updated
Disable or enable in-app surveys in your Flutter app with a single API, and note that disabling also stops any survey you trigger manually.
This page details the API for disabling and enabling in-app surveys for your Flutter apps.
You can completely disable any surveys from showing in general using the following API. Please note that this also disables surveys that will be shown manually as this disables any survey related request.
Surveys.setEnabled(false);Last updated