modelsImageDestroy method
Implementation
Future<void> modelsImageDestroy(
String id,
) async {
final response = await modelsImageDestroyWithHttpInfo(
id,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}