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