executeWhenDidDisappear method

void executeWhenDidDisappear(
  1. Function executor
)

Registers the callback that gets called when SDK is going to get hidden

Implementation

void executeWhenDidDisappear(Function executor) {
  _didAppearExecutor = executor;
}