installCanonicalBase64ByteDecoder method

void installCanonicalBase64ByteDecoder(
  1. CanonicalBase64ByteDecoder decoder
)

Installs a transport-provided accelerator without replacing an explicit decoder supplied by the application.

Implementation

void installCanonicalBase64ByteDecoder(
  CanonicalBase64ByteDecoder decoder,
) {
  _canonicalBase64ByteDecoder ??= decoder;
}