setEnableLoadingScreen method

void setEnableLoadingScreen(
  1. bool enable
)

Determines whether the loading screen will be the SDK default implementation or if you will implement your own. If set to 'true,' the loading screen will be a standard SDK screen. In the case of 'false,' you should implement the loading screen on your side. By default the loading screen is set to 'false'.

Implementation

void setEnableLoadingScreen(bool enable) {
  this.enableLoadingScreen = enable;
}