dispose static method

Future<void> dispose()

Dispose of resources.

Call this when done using the engine to release resources.

Implementation

static Future<void> dispose() async {
  EmbeddingService.dispose();
  await closeDbPool();
}