destroy method

Future<void> destroy()

Implementation

Future<void> destroy() async {
  await Future.forEach(_connections, (LdapConnection c) async {
    await c.close();
  });
}