advance method

void advance(
  1. Duration duration
)

Implementation

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