onDestroy method

void onDestroy()

onDestroy生命周期

Implementation

void onDestroy() {
  for (var element in timers) {
    element.cancel();
  }
  timers.clear();

  _context = null;
  onShowLoading = null;
  onDismissLoading = null;
  _cancelRequests();
}