isNullOrEmpty property
bool
get
isNullOrEmpty
Checks if the list is null or empty.
Implementation
bool get isNullOrEmpty => this == null || this!.isEmpty;
Checks if the list is null or empty.
bool get isNullOrEmpty => this == null || this!.isEmpty;