getAllQuestions method

Future<Response> getAllQuestions()

Implementation

Future<http.Response> getAllQuestions() {
  return get(
    Uri.parse('$apiURL/question/all'),
  );
}