isNullOrEmpty property
bool
get
isNullOrEmpty
check if List is Null or Empty
Implementation
bool get isNullOrEmpty => this == null || this!.isEmpty;
check if List is Null or Empty
bool get isNullOrEmpty => this == null || this!.isEmpty;