maybeAdd method

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

Adds add to this its not null.

Implementation

List<T> maybeAdd(List<T>? add) => maybeAddToList(this, add)!;