increaseRetryCount method

dynamic increaseRetryCount()

Implementation

increaseRetryCount() {
  retryPressCount++;
  isLoading(true);
  Future.delayed(const Duration(milliseconds: 3000), () {
    isLoading(false);
  });
}