toBcsBase64 method

String toBcsBase64()

Converts the BCS-encoded bytes to a Base64 string.

Implementation

String toBcsBase64() {
  return StringUtils.decode(toBcs(), type: StringEncoding.base64);
}