operator + method
Concatenates this
and the other
array into a single array.
Implementation
Expression<List<T>> operator +(Expression<List<T>> other) {
return (dartCast<String>() + other.dartCast())
.dartCast(customType: driftSqlType as CustomSqlType<List<T>>);
}