writeBase64URL method

void writeBase64URL(
  1. Uint8Buffer data
)
inherited

Tag based Base64 URL byte string encoding. The encoder does not itself perform the base encoding as stated in RFC7049, it just indicates to the decoder that the following byte string maybe base encoded.

Implementation

void writeBase64URL(typed.Uint8Buffer data) {
  _writeTag(tagExpectedBase64Url);
  _writeBytes(data);
  _builderHookImpl(false);
}