isNullOrEmpty property

bool get isNullOrEmpty

Returns true if this nullable iterable is either null or empty.

Implementation

bool get isNullOrEmpty => this == null || this!.keys.isNullOrEmpty;