encodeSecret static method

String encodeSecret(
  1. String propertyIdAndSecret
)

Implementation

static String encodeSecret(String propertyIdAndSecret) {
  // Convert the string to UTF-8 bytes
  List<int> bytes = utf8.encode(propertyIdAndSecret);
  // Encode the bytes to Base64
  return base64Encode(bytes);
}