encryptOtp static method

String encryptOtp(
  1. String otp
)

Encrypts an OTP before sending it to the API.

Implementation

static String encryptOtp(String otp) {
  return _encryptText(otp);
}