getBase10Codec function
Returns a codec for encoding and decoding base-10 strings.
This codec serializes strings using a base-10 encoding scheme. The output consists of bytes representing the numerical values of the input string.
Implementation
VariableSizeCodec<String, String> getBase10Codec() => getBaseXCodec(_alphabet);