bytesToBigInt static method

BigInt bytesToBigInt(
  1. List<int> bb
)

Implementation

static BigInt bytesToBigInt(List<int> bb) {
  return (bb.isEmpty) ? BigInt.from(0) : decodeBigInt(bb);
}