ProxyAuth.basic constructor
Creates a new ProxyAuth instance with basic authentication
Implementation
factory ProxyAuth.basic({
required String username,
required String password,
}) {
return ProxyAuth(
username: username,
password: password,
method: ProxyAuthMethod.basic,
);
}