projectsImageDestroy method

Future<void> projectsImageDestroy(
  1. String id
)

Delete an image.

Parameters:

Implementation

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