isNotNullAndEmpty property

bool get isNotNullAndEmpty

check not nullable and not empty in nullable list return true

Implementation

bool get isNotNullAndEmpty => this != null && this!.isNotEmpty;