stack method

void stack(
  1. T value
)

Implementation

void stack(T value) => _stack.add(value);