BasicCredentials constructor

BasicCredentials(
  1. String userName,
  2. String password,
  3. String? domain
)
Initializes a new instance to use specified credential. Account user name. Account password. Account domain.

Implementation

BasicCredentials(this.userName, this.password, this.domain);