fromNull method

List<T> fromNull()

Implementation

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