postCreateSelections method

Future<void> postCreateSelections(
  1. int id
)

Parameters:

  • int id (required):

Implementation

Future<void> postCreateSelections(int id,) async {
  final response = await postCreateSelectionsWithHttpInfo(id,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}