readyForListeners function
Implementation
@ListenersByLego()
Future<void> readyForListeners(BuildContext context) async {
if (_done) return; _done = true;
await firebaseAuthUserChangesListener(context);
await flutterFgbgListener(context);
await firebaseAuthIdTokenChanges(context);
await newListener(context);
await firebaseAuthStateChangesListener(context);
}