startLoading method

void startLoading()

Starts loading state.

Implementation

void startLoading() {
  if (_isLoading) return;
  _isLoading = true;
  notifyListeners();
}