encryptPhoneNumber static method

String encryptPhoneNumber(
  1. String phoneNumber
)

Encrypts a phone number before sending it to the API.

Implementation

static String encryptPhoneNumber(String phoneNumber) {
  return _encryptText(phoneNumber);
}