fireOnRouteApiScreen method

void fireOnRouteApiScreen({
  1. bool? isApiScreenShowed,
  2. bool? isShowLogButton,
})

Notifies listeners when the API screen is shown or hidden.

isShowed - Whether the API screen is currently shown.

Implementation

void fireOnRouteApiScreen({bool? isApiScreenShowed, bool? isShowLogButton}) {
  for (var element in _onRouteApiScreenList) {
    element(
        isApiScreenShowed: isApiScreenShowed,
        isShowLogButton: isShowLogButton);
  }
}