DataStack<T> constructor

DataStack<T>([
  1. List<T>? values
])

Implementation

DataStack([List<T>? values]) {
  _stack = values ?? [];
}