stateLifecycleDebug<P> function

P stateLifecycleDebug<P>(
  1. P object
)

Implementation

P stateLifecycleDebug<P>(P object){
  if(kDebugMode){
    CategoryLogger.d([LogCategory.state, LogCategory.lifecycle], object.toString());
  }
  return object;
}