close method

Future<void> close()

Close the session

Implementation

Future<void> close() async {
  _closeSession(reason: 'Session manually closed');
  await tryCatchIgnore(_connection.close);
}