clearTimeout function

void clearTimeout(
  1. Timer t
)

Implementation

void clearTimeout(Timer t) {
  t.cancel();
}