blob: fd407fb80868a8faf8054d5398206a0b15c78b20 [file] [log] [blame] [view]
# add method
*[<Null safety>](https://dart.dev/null-safety)*
void add
(int delta)
_<span class="feature">inherited</span>_
<p>Adds <code>delta</code> to the value of this metric.</p>
## Implementation
```dart
void add(T delta) {
_writer?.addMetric(index, delta);
}
```