operator + method

Expression<List<T>> operator +(
  1. Expression<List<T>> other
)

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>>);
}