currentProfileNotifier property

ValueNotifier<TProfileModel?> currentProfileNotifier
final

Notifies listeners about changes to the current user's profile (TProfileModel).

Emits null if no profile is loaded (e.g., user signed out, profile not found, or error).

Implementation

final ValueNotifier<TProfileModel?> currentProfileNotifier = ValueNotifier(
  null,
);