isNotNullAndEmpty property
bool
get
isNotNullAndEmpty
check nullable and empty in nullable list
Implementation
bool get isNotNullAndEmpty {
return this != null && this!.isNotEmpty;
}
check nullable and empty in nullable list
bool get isNotNullAndEmpty {
return this != null && this!.isNotEmpty;
}