apiV2TutorCustomerFeedbackDestroy method

Future<void> apiV2TutorCustomerFeedbackDestroy(
  1. int id
)

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