```dart Future confirmSignUpPhoneVerification( String username, String otpCode, ) async { await Amplify.Auth.confirmSignUp( username: username, confirmationCode: otpCode, ); } ```