stop method

void stop(
  1. bool isStopped
)

Once this API is invoked, our SDK no longer communicates with our servers and stops functioning. In some extreme cases you might want to shut down all SDK activity due to legal and privacy compliance. This can be achieved with the stop API.

Implementation

void stop(bool isStopped) {
  _methodChannel.invokeMethod("stop", {'isStopped': isStopped});
}