layoutDebug<P> function

P layoutDebug<P>(
  1. P object
)

Implementation

P layoutDebug<P>(P object){
  if(kDebugMode){
    CategoryLogger.dSingle(LogCategory.layout, object.toString());
  }
  return object;
}