detach method

Future<void> detach()

Detaches the session (keeps it alive on the node) and stops driving it.

Implementation

Future<void> detach() async {
  await _teardown();
  await _session.detach();
}