isNullOrEmpty property

bool get isNullOrEmpty

check if List is Null or Empty

Implementation

bool get isNullOrEmpty => this == null || this!.isEmpty;