credential static method

AuthCredential credential(
  1. String verificationId,
  2. String verificationCode
)

Creates a phone auth credential given the verification ID from verifyPhoneNumber and the verificationCode that was sent to the user's mobile device.

Implementation

static AuthCredential credential(
        String verificationId, String verificationCode) =>
    PhoneAuthProviderJsImpl.credential(verificationId, verificationCode);