ntlm 1.0.2
ntlm: ^1.0.2 copied to clipboard
Library for making HTTP requests that require NTLM authentication
example/ntlm_example.dart
import 'package:ntlm/ntlm.dart';
main() {
NTLMClient client = new NTLMClient(
domain: "",
workstation: "LAPTOP",
username: "User208",
password: "password",
);
client.get("https://example.com/").then((res) {
print(res.body);
});
}