getReport method

PerformanceReport? getReport()

Implementation

PerformanceReport? getReport() {
  if (!actionsReport.containsKey(this._fullPath)) {
    actionsReport[this._fullPath] = PerformanceReport(
        actionName: this._actionName, fullPath: this._fullPath);
  }
  return actionsReport[this._fullPath];
}