whereNull method

List whereNull(
  1. String key
)

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

Example:

whereNull(list, "key")

Implementation

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