add method

void add(
  1. E value
)

As List.add.

Implementation

void add(E value) {
  _maybeCheckElement(value);
  _safeList.add(value);
}