dispose method

Future<void> dispose()

Dispose the instance to free up resources.

Implementation

Future<void> dispose() async {
  await _restoreSessionCancellableOperation.cancel();
  client.dispose();
  _instance._supabaseAuth.dispose();
  _initialized = false;
}