stateDebug<P> method

P stateDebug<P>(
  1. P object
)

Implementation

P stateDebug<P>(P object){
  if(kDebugMode){
    final debugInfo = _debugInfo;
    debugInfo != null ? utils.stateDebug('${T.runtimeType}($debugInfo):$object') : utils.stateDebug('${T.runtimeType}:$object');
  }
  return object;
}