getCompactTotalLenght method

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

Implementation

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