Function createBase64URLOutputStream
Creates a URL safe Base64 encoding stream (using '-' and '_' for non-alphabetic values).
Base64OutputStreamImpl!('-','_','=',OutputStream) createBase64URLOutputStream(OutputStream)
(
OutputStream output,
ulong max_bytes_per_line = 57
)
if (isOutputStream!OutputStream);
Parameters
Name | Description |
---|---|
output | The output sink to which the encoded result is written. |
max_bytes_per_line | The maximum number of input bytes after which a line break is inserted into the output. Defaults to 57, according to the MIME standard. |