setAnonymousId method
Sets the anonymous ID for the current session and saves it.
Implementation
Future<void> setAnonymousId(String? anonId) async {
final session = await getOrCreateSession();
session.anonId = anonId;
await saveSession(session, merge: true);
}