closeQuestion method

Future closeQuestion({
  1. required String questionId,
})

Implementation

Future closeQuestion({required String questionId}) {
  return _questionRepository.closeQuestion(questionId: questionId);
}