```dart Future confirmSignInPhoneVerification(String otpCode) async { await Amplify.Auth.confirmSignIn( confirmationValue: otpCode, ); } ```