stopQuestion method

Future stopQuestion(
  1. CreateQuestionResult params
)

Implementation

Future stopQuestion(CreateQuestionResult params) async {
  var data =
      await HttpClient.post<CreateQuestionResult, CreateQuestionResult>(
        api: "/v1/exam/stopQuestion",
        body: params,
      );
  return data;
}