close method

Future<void> close()

Terminates any open connections. If a settings object remains unclosed, the Dart process may not terminate.

Implementation

Future<void> close() async {
  await _backend.close();
}