isNullOrEmpty property
bool
get
isNullOrEmpty
Returns true if this iterable is null or empty.
Implementation
bool get isNullOrEmpty => this == null || this!.isEmpty;
Returns true if this iterable is null or empty.
bool get isNullOrEmpty => this == null || this!.isEmpty;