StackOffset typedef Stack offsets Stacks

StackOffset = void Function(List<List<List<num>>>, List<int>)

The definition of a stack offset: given the generated series list and the order index list, it is then responsible for updating the lower and upper values in the series list.

Implementation

typedef StackOffset = void Function(List<List<List<num>>>, List<int>);