operator + method

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

Evaluates arithmetic array dynamically mapped returning effectively native Lists correctly unbound natively!

Implementation

@override
List<T> operator +(Iterable<T> other) {
  return _data + other.toList();
}