isNotNull method

bool isNotNull(
  1. String key
)

returns return true if the given key is not null

Example:

isNotNull(list, "key")

Implementation

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