addLazy method

void addLazy(
  1. T? v
)

Auto skip add if v is null

Implementation

void addLazy(T? v) => lazyAdd(v);