void timerCancel(Function callback)

Source

static void timerCancel(Function callback) {
  // TODO: what if timerCancel is called from another timer of group?
  TimerFunctions existTf = _functionsMap[callback];

  if (existTf != null) {
    existTf.remove(callback);
  }
}