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