base64Decode static method
Decodes strict canonical standard Base64 text to bytes.
Implementation
static CryptoStep<String, Uint8List> base64Decode() => const _OperationStep(
'encoding.base64.decode',
CryptoBytes.decodeBase64,
_EncodingDescriptor(_EncodingOperation.base64Decode),
);