concat method

List<T> concat([
  1. Iterable? items
])

Combines two or more arrays. @param items Additional items to add to the end of array1.

Implementation

_i2.List<T> concat([_i2.Iterable<_i2.dynamic>? items]) => ((_i6.callMethod(
      this,
      'concat',
      [...?items],
    )) as _i2.List)
        .cast();