isEmptyOrNull property
bool
get
isEmptyOrNull
Returns true when the map is null or empty.
Implementation
bool get isEmptyOrNull => this == null || this!.isEmpty;
Returns true when the map is null or empty.
bool get isEmptyOrNull => this == null || this!.isEmpty;