removeNull<T> method

List<T> removeNull<T>()

仅移除空项

Implementation

List<T> removeNull<T>() {
  return whereType<T>().toList();
}