StackSeries<T> constructor

StackSeries<T>({
  1. required String key,
  2. required List<StackPoint<T>> points,
})

Creates a stack series.

Implementation

StackSeries({
  required this.key,
  required this.points,
});