push method

void push(
  1. T element
)

Implementation

void push(T element) => _list.addLast(element);