add method

  1. @override
void add(
  1. E value
)
override

Adds value at the end of the list, extending the length by one. Throws an UnsupportedError if the list is not extendable.

Implementation

@override
void add(E value) {
  check(value);
  _wrappedList.add(value);
}