withDigestAuth method

ProxyModel withDigestAuth(
  1. String username,
  2. String password
)

Creates a new ProxyModel with digest authentication

Implementation

ProxyModel withDigestAuth(String username, String password) {
  return withAuth(ProxyAuth.digest(username: username, password: password));
}