currentProfileNotifier property
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,
);