operator + method Null safety
Implementation
List<Interval> operator +(List<Interval> other) {
for (var value in other) {
_add(value);
}
return this._intervals;
}
List<Interval> operator +(List<Interval> other) {
for (var value in other) {
_add(value);
}
return this._intervals;
}