PhoneAuthCredential constructor

PhoneAuthCredential({
  1. String? verificationId,
  2. String? smsCode,
  3. String? temporaryProof,
  4. String? phoneNumber,
})

Implementation

PhoneAuthCredential(
    {this.verificationId,
    this.smsCode,
    this.temporaryProof,
    this.phoneNumber})
    : super(
        providerId: PhoneAuthProvider.id,
        signInMethod: PhoneAuthProvider.phoneSignInMethod,
      );