ShortStack constructor

ShortStack(
  1. int size
)

Implementation

ShortStack(int size) {
  _vector = Int16List(size);
}