lazyAdd method

void lazyAdd(
  1. T? v
)

Auto skip add if v is null

Implementation

void lazyAdd(T? v) {
  if (v != null) add(v);
}