setElementTime method

void setElementTime(
  1. String key,
  2. int costTime
)

Implementation

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