aiMathMathSkillsDestroy method

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

Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin

Parameters:

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

  • String org (required):

Implementation

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