standard constant
Base32Codec
const standard
Codec instance to encode and decode 8-bit integer sequence to 5-bit Base-32 character sequence using the alphabet described in RFC-4648:
ABCDEFGHIJKLMNOPQRSTUVWXYZ234567
It is padded with =
Implementation
static const Base32Codec standard = Base32Codec._(
encoder: AlphabetEncoder(
bits: 5,
padding: _padding,
alphabet: _base32EncodingRfc4648,
),
decoder: AlphabetDecoder(
bits: 5,
padding: _padding,
alphabet: _base32DecodingRfc4648,
),
);