Bytes.fromBase64()
Convert a Base64-encoded string to an FQL Bytes value.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
encoded |
true |
Base64-encoded string representing a byte array. |
Examples
Bytes.fromBase64("SGVsbG8sIEZhdW5hIQ==")
The method returns an FQL Bytes value:
Bytes("SGVsbG8sIEZhdW5hIQ==")