currentUserIdUpdates property

Stream<String?> get currentUserIdUpdates

Stream of the currently-identified user id. Emits null on logout / before identify. Mirrors Android SDK's StateFlow<String?> and the iOS plugin's shadowed cache (Kit currentUserId is internal).

Implementation

Stream<String?> get currentUserIdUpdates {
  throw UnimplementedError(
    'currentUserIdUpdates has not been implemented.',
  );
}