WebClientUrl constructor

WebClientUrl(
  1. String? authenticationMethods,
  2. String? url
)
Initializes a new instance of the The authentication methods. The URL.

Implementation

WebClientUrl(String? authenticationMethods, String? url) {
  this._authenticationMethods = authenticationMethods;
  this._url = url;
}