apiV2TutorCustomerFeedbackDestroy method
Parameters:
- int id (required): A unique integer value identifying this booking.
Implementation
Future<void> apiV2TutorCustomerFeedbackDestroy(int id,) async {
final response = await apiV2TutorCustomerFeedbackDestroyWithHttpInfo(id,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}