showApiScreen method
Implementation
showApiScreen({bool isSafe = true}) async {
if (!isShowedApiScreen && (!isSafe || isLogEnabled)) {
fireOnRouteApiScreen(true);
isShowedApiScreen = true;
final result = await AppNavigator.home();
isShowedApiScreen = false;
fireOnRouteApiScreen(false);
return result;
}
}