observeDuration<T> method

Future<T> observeDuration<T>(
  1. Future<T> f
)

Observe the duration of the Future f and store it in the summary without labels.

Implementation

Future<T> observeDuration<T>(Future<T> f) {
  return _noLabelChild.observeDuration(f);
}