operator + method

  1. @override
List<E> operator +(
  1. List<E> other
)
override

Creates a new CollectiveList by concatenating this list with another.

Implementation

@override
List<E> operator +(List<E> other) {
  return _collective + other;
}