apiV2TutorTutorFeedbackDestroy method

Future<void> apiV2TutorTutorFeedbackDestroy(
  1. int bookingPk
)

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));
  }
}