visitConstructorInvocation method
Implementation
@experimental
@override
T? visitConstructorInvocation(ConstructorInvocation node) {
stopwatch.start();
T? result = _baseVisitor.visitConstructorInvocation(node);
stopwatch.stop();
return result;
}