(verificationId: string, verificationCode: string)
| 742 | } |
| 743 | |
| 744 | credential(verificationId: string, verificationCode: string) { |
| 745 | return AuthCredential.fromNative(com.google.firebase.auth.PhoneAuthProvider.getCredential(verificationId, verificationCode)); |
| 746 | } |
| 747 | |
| 748 | verifyPhoneNumber(phoneNumber: string): Promise<string> { |
| 749 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected