getCompactBigintInfos method

Tuple<int, BigInt> getCompactBigintInfos(
  1. int offset
)

Implementation

Tuple<int, BigInt> getCompactBigintInfos(int offset) {
  final length =
      LayoutSerializationUtils.decodeLength(_bytes, offset: offset);
  return Tuple(length.item1, length.item2);
}