bind abstract method

Future<LdapResult> bind({
  1. String? DN,
  2. String? password,
})

Performs an LDAP BIND operation.

Sends a bind request using the credentials that were set by the constructor or passed in via DN and password. If DN or password are provided, the values are saved for future bind operations.

Returns a Future containing the result of the BIND operation.

Implementation

Future<LdapResult> bind({String? DN, String? password});