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