isEmptyOrNull property

bool get isEmptyOrNull

Returns true when the map is null or empty.

Implementation

bool get isEmptyOrNull => this == null || this!.isEmpty;