close method

Future close({
  1. bool forceClose = false,
})

Close the connection This does not kill and clear the session.

Implementation

Future close({bool forceClose = false}) async {
  return _transport.close(forceClose: forceClose);
}