$isEmptyFn<T> function

bool Function(List<T> value) $isEmptyFn<T>()

Implementation

bool Function(List<T> value) $isEmptyFn<T>() {
  return (List<T> value) => value.isEmpty;
}