getNbrOfQuestionsQuiz method

Future<int> getNbrOfQuestionsQuiz()

Implementation

Future<int> getNbrOfQuestionsQuiz() async {
  sharedPref = await _sharedPreferences;
  return sharedPref.getInt("NbrOfQuestionsQuiz") ?? 10;
}