updateDebug<P> method

P updateDebug<P>(
  1. P object
)

Implementation

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