stopPing method

void stopPing()

Implementation

void stopPing() {
  // Timer durdurma (iptal etme)
  if (pingTimer != null) {
    pingTimer!.cancel();
    pingTimer = null;
  }
}