isNullOrEmpty property
bool
get
isNullOrEmpty
Whether the iterable is null or empty.
Implementation
bool get isNullOrEmpty => this == null || this!.isEmpty;
Whether the iterable is null or empty.
bool get isNullOrEmpty => this == null || this!.isEmpty;