getRangeData method
Get the box data from the start offset to the end offset.
Ignore the header and extended data.
Implementation
List<int> getRangeData(int start, int end) {
return context.getRangeData(dataStartOffset + start, dataStartOffset + end);
}