fireOnRouteApiScreen method
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);
}
}