dispose method

Future<void> dispose()

Disposes of the database.

This internally canceles any subscriptions to the accounts idTokenStream, if active.

Implementation

Future<void> dispose() async {
  await _idTokenSub?.cancel();
}