(auth: com.google.firebase.auth.FirebaseAuth)
| 1013 | if (this.native && typeof listener === 'function') { |
| 1014 | const nativeListener = new com.google.firebase.auth.FirebaseAuth.AuthStateListener({ |
| 1015 | onAuthStateChanged(auth: com.google.firebase.auth.FirebaseAuth) { |
| 1016 | listener(User.fromNative(auth.getCurrentUser())); |
| 1017 | }, |
| 1018 | }); |
| 1019 | this.native.addAuthStateListener(nativeListener); |
| 1020 | this._authStateChangeListeners.set(listener, nativeListener); |
nothing calls this directly
no test coverage detected