whereNotNull method

List whereNotNull(
  1. String key
)

returns items from the collection where the given key is not null

Example:

whereNotNull(list, "key")

Implementation

List<dynamic> whereNotNull(String key) => FxList.whereNotNull(this, key);