void _fire()

in lib/fake_async.dart [309:319]


  void _fire() {
    assert(isActive);
    _tick++;
    if (isPeriodic) {
      _callback(this);
      _nextCall += duration;
    } else {
      cancel();
      _callback();
    }
  }