cancelDelayShowTimer method

void cancelDelayShowTimer()

Implementation

void cancelDelayShowTimer() {
  if (delayShowTimer != null) {
    delayShowTimer!.cancel();
    delayShowTimer = null;
  }
}