cancelWaitAfter method

void cancelWaitAfter()

This is called to cancel any running "WaitAfter" timer.

This is called when a tool is stopped.

This method is rarely overridden. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose

Implementation

void cancelWaitAfter() {
  _i4.callMethod(
    this,
    'cancelWaitAfter',
    [],
  );
}