What the Error in this code plase
#if OBJC
- (void) tst
{
[[FIRPhoneAuthProvider provider] verifyPhoneNumber:"+96666666666"
UIDelegate:nil
completion:^(NSString * _Nullable verificationID, NSError * _Nullable error) {
if (error) {
[self showMessagePrompt:error.localizedDescription];
return;
}
// Sign in using the verificationID and the code sent to the user
// ...
}];
}
#End If