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