isNull method

bool isNull(
  1. String key
)

returns return true if the given key is null:

Example:

isNull(list, "key")

Implementation

bool isNull(String key) => FxList.isNull(this, key);