advance method

void advance(
  1. Duration delta
)

Advances the clock by delta.

Implementation

void advance(Duration delta) {
  _now = _now.add(delta);
}