listNotNull<T> function

bool listNotNull<T>(
  1. List<T> x
)

Implementation

bool listNotNull<T>(List<T> x) => notEmpty(x) && !x.contains(null);