removeQueuedCustomToasts method

dynamic removeQueuedCustomToasts()

FToast maintains a queue for every toast if we called showToast for 3 times we all to queue and show them one after another

call removeCustomToast to hide the toast immediately

Implementation

removeQueuedCustomToasts() {
  _timer?.cancel();
  _fadeTimer?.cancel();
  _timer = null;
  _fadeTimer = null;
  _overlayQueue.clear();
  _entry?.remove();
  _entry = null;
}