setChallengeLoading method

void setChallengeLoading(
  1. bool value
)

Implementation

void setChallengeLoading(bool value) {
  state = state.copyWith(challengeLoading: value);
  if (value) {
    resetSubmitSlide();
  }
}