dispose method

Future<void> dispose()

Disposes of the HTTP client resources.

Implementation

Future<void> dispose() async {
  await _translationMemory.dispose();
  _httpClient.close();
}