isLoading property
Whether the repository is currently fetching data from Firestore.
true during initial load, auth transitions, and pending writes.
Use this to drive spinners or progress indicators in the UI.
Implementation
final ValueNotifier<bool> isLoading = ValueNotifier<bool>(true);