decodeBigInt function

BigInt decodeBigInt(
  1. List<int> bytes
)

Implementation

BigInt decodeBigInt(List<int> bytes) {
  return bytesToBigInt(bytes, Endian.big, signed: true);
}