stopAllMonitoring static method
Sets a flag that stops all session monitoring.
The method will revoke the consent given by the end-users for monitoring their sessions.
@remarks
- The monitoring flag is opt-in by default. In case you want to opt-out of the automatic monitoring,
it is your responsibility to call the
stopAllMonitoring()method at the place of your convenience. - This method will only store a monitoring permission flag, it will not provide any UI or dialog. The responsibility of implementing a UI is yours as a developer integrating the SDK.
@see resumeAllMonitoring()
Implementation
static Future<void> stopAllMonitoring() {
return DevRevSDKPlatform.instance.stopAllMonitoring();
}