observe method

void observe(
  1. double v
)

Observe a new value v and store it in the summary without labels.

Implementation

void observe(double v) {
  _noLabelChild.observe(v);
}