stop static method

void stop()

stop is used to stop PIP manually.

Note: [setupPIP] is required to call before calling [stopPIP].

Refer PIP mode guide here

Implementation

static void stop() {
  if (_isPIPSetupDone) {
    PlatformService.invokeMethod(PlatformMethod.stopPIP);
  }
}