provided method
Implementation
Future<void> provided(
int id, {
required Object authorization,
}) async {
var response = await providedWithHttpInfo(id, authorization: authorization);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}