complete method
Completes the profiling session
Implementation
@override
void complete() {
if (_completed) return;
_endTime = DateTime.now();
_completed = true;
PerformanceProfiler()._completeSession(this);
}
Completes the profiling session
@override
void complete() {
if (_completed) return;
_endTime = DateTime.now();
_completed = true;
PerformanceProfiler()._completeSession(this);
}