aiMathMathQuestionsDestroy method

Future<void> aiMathMathQuestionsDestroy(
  1. int id,
  2. String org
)

Retrieve, update and delete math questions.

Parameters:

  • int id (required): A unique integer value identifying this math question.

  • String org (required):

Implementation

Future<void> aiMathMathQuestionsDestroy(int id, String org,) async {
  final response = await aiMathMathQuestionsDestroyWithHttpInfo(id, org,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}