entitiesNotNull property

List<T> entitiesNotNull

Non-nullable version of entities.

Implementation

List<T> get entitiesNotNull =>
    entities?.where((e) => e != null).whereType<T>().toList() ?? <T>[];