push method

void push(
  1. E value
)

Implementation

void push(E value) => _list.add(value);