msbFirst constant
BigIntCodec
const msbFirst
Codec instance to encode and decode 8-bit integer sequence to BigInt number treating the input bytes in big-endian order.
Implementation
static const BigIntCodec msbFirst = BigIntCodec._(
encoder: _BigIntMSBFirstEncoder(),
decoder: _BigIntMSBFirstDecoder(),
);