writeBase16 method

void writeBase16(
  1. Uint8Buffer data
)

Tag based Base16 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 writeBase16(typed.Uint8Buffer data) {
  _writeTag(tagExpectedBase16);
  _writeBytes(data);
  _builderHookImpl(false);
}