apiV3ValidatePhoneRetrieve method

Future<void> apiV3ValidatePhoneRetrieve()

Implementation

Future<void> apiV3ValidatePhoneRetrieve() async {
  final response = await apiV3ValidatePhoneRetrieveWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}