resumeAllMonitoring static method

Future<void> resumeAllMonitoring()

Sets a flag that resumes the session monitoring.

The main purpose of this method is to get the consent (opt-in) of the end-user that their session will be monitored and data might be collected.

@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 stopAllMonitoring()

Implementation

static Future<void> resumeAllMonitoring() {
  return DevRevSDKPlatform.instance.resumeAllMonitoring();
}