maybeAdd method

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

Adds add to this its not null.

Implementation

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