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