Arbitrary-precision integers encoded as exact decimal text.
static final bigint = Codec<BigInt>( 'bigint', (v) => v is BigInt ? v : BigInt.parse(v.toString()), (v) => v.toString(), );