(email: string, password: string)
| 671 | |
| 672 | export class EmailAuthProvider { |
| 673 | static credential(email: string, password: string) { |
| 674 | return AuthCredential.fromNative(com.google.firebase.auth.EmailAuthProvider.getCredential(email, password)); |
| 675 | } |
| 676 | |
| 677 | static credentialWithLink(email: string, link: string) { |
| 678 | return AuthCredential.fromNative(com.google.firebase.auth.EmailAuthProvider.getCredentialWithLink(email, link)); |
nothing calls this directly
no test coverage detected