operator + method
- 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();
}