isNotNullOrEmpty property
bool
get
isNotNullOrEmpty
Checks if this nullable map is not null
and contains at least one key-value pair.
Returns true
if the map is neither null
nor empty; otherwise, returns false
.
Implementation
bool get isNotNullOrEmpty => !this.isNullOrEmpty;