isNotEmptyForKey method

bool isNotEmptyForKey(
  1. K key
)

Return true if there are 1 or more values, for the given key. Return false if the value set is empty or null, for the given key.

Implementation

bool isNotEmptyForKey(K key) => !isEmptyForKey(key);