(verificationId: string, verificationCode: string)
| 689 | } |
| 690 | |
| 691 | credential(verificationId: string, verificationCode: string) { |
| 692 | return AuthCredential.fromNative(this._native.credentialWithVerificationIDVerificationCode(verificationId, verificationCode)); |
| 693 | } |
| 694 | |
| 695 | verifyPhoneNumber(phoneNumber: string): Promise<string> { |
| 696 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected