decodeToBigInt static method

BigInt decodeToBigInt(
  1. Uint8List encoded,
  2. int offset
)

Implementation

static BigInt decodeToBigInt(Uint8List encoded, int offset) {
  return bytesToBigIntUnsigned(encoded.sublist(offset, offset + 32));
}