isEmptyOrNull property

bool isEmptyOrNull

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

Implementation

bool get isEmptyOrNull => this?.isEmpty ?? true;