fromNull method

Set<T> fromNull()

Implementation

Set<T> fromNull() {
  return Set.from(this.where((e) => e != null));
}