setElementTime method
Implementation
void setElementTime(String key, int costTime) {
if (!_performanceData.data.containsKey(key)) {
_performanceData.data[key] = NodePerformanceData();
}
_performanceData.data[key]?.elementTime += costTime;
_performanceData.elementTime += costTime;
}