getCompactTotalLenght method

Tuple<int, int> getCompactTotalLenght(
  1. int offset
)

Implementation

Tuple<int, int> getCompactTotalLenght(int offset) {
  try {
    final decode = LayoutSerializationUtils.decodeLengthWithDetails(_bytes,
        offset: offset);
    return decode;
  } catch (e) {
    rethrow;
  }
}