maybeAdd method

Iterable<T> maybeAdd(
  1. Iterable<T>? add
)

Adds add to this if it is not null.

Implementation

Iterable<T> maybeAdd(Iterable<T>? add) => maybeAddToIterable(this, add)!;