lsbFirst constant

BigIntCodec const lsbFirst

Codec instance to encode and decode 8-bit integer sequence to BigInt number treating the input bytes in little-endian order.

Implementation

static const BigIntCodec lsbFirst = BigIntCodec._(
  encoder: _BigIntLSBFirstEncoder(),
  decoder: _BigIntLSBFirstDecoder(),
);