signInAnonymously function

Future<AuthOutcome> signInAnonymously()

Anonymous sign-in. The project must have the Anonymous provider enabled.

Every device gets a distinct throwaway identity, so rules cannot tell them apart — fine for a prototype or genuinely public data, not for a fleet.

Implementation

Future<AuthOutcome> signInAnonymously() =>
    _awaitSignIn(fdbAuthSignInAnonymously);