listIsNull<T> function

bool listIsNull<T>(
  1. Iterable<T> x
)

Implementation

bool listIsNull<T>(Iterable<T> x) => isEmpty(x) || x.where((y) => y == null).length == x.length;