potentialNullDereferences property

List<NullCheckResult> get potentialNullDereferences

All potentially unsafe results (definitely null or unknown).

Implementation

List<NullCheckResult> get potentialNullDereferences =>
    results.where((r) => !r.isSafe).toList();