destroy method

void destroy()

Destroys the congestion controller and cancels all timers.

Implementation

void destroy() {
  // //print('[CongestionController] destroy: Cancelling PTO timer.');
  _ptoTimer?.cancel();
  _ptoTimer = null;
  pacingController.dispose();
}