fireOnRouteApiScreen method

void fireOnRouteApiScreen(
  1. bool isShowed
)

Notifies listeners when the API screen is shown or hidden.

isShowed - Whether the API screen is currently shown.

Implementation

void fireOnRouteApiScreen(bool isShowed) {
  for (var element in _onRouteApiScreenList) {
    element(isShowed);
  }
}