add method

void add(
  1. Name value
)
inherited

Adds value at the end of the queue.

Implementation

void add(T value) => _queue.add(value);