getI8Codec function

FixedSizeCodec<num, int> getI8Codec()

Creates a FixedSizeCodec for signed 8-bit integers (i8).

Combines getI8Encoder and getI8Decoder.

Implementation

FixedSizeCodec<num, int> getI8Codec() =>
    combineCodec(getI8Encoder(), getI8Decoder()) as FixedSizeCodec<num, int>;