navPageDebug<P> function

P navPageDebug<P>(
  1. P object
)

Implementation

P navPageDebug<P>(P object){
  if(kDebugMode){
    CategoryLogger.d([LogCategory.nav, LogCategory.page], object.toString());
  }
  return object;
}