showApiScreen method

dynamic showApiScreen({
  1. bool isSafe = true,
})

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;
  }
}