lateCancellation method
Parameters:
-
int id (required):
-
CancelledModel model (required):
-
Object authorization:
Implementation
Future<void> lateCancellation(
int id,
CancelledModel model, {
required Object authorization,
}) async {
final response = await lateCancellationWithHttpInfo(
id,
model,
authorization: authorization,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}