maybeAdd method

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

Adds add to this its not null.

Implementation

Set<T> maybeAdd(Set<T>? add) => maybeAddToSet(this, add)!;