AfterAnonymousAccountCreatedFunction typedef

AfterAnonymousAccountCreatedFunction = FutureOr<void> Function(Session session, {required UuidValue authUserId, required Transaction? transaction})

Function to be called after a new anonymous account has been created.

Implementation

typedef AfterAnonymousAccountCreatedFunction =
    FutureOr<void> Function(
      Session session, {
      required UuidValue authUserId,
      required Transaction? transaction,
    });