isValidListInteger static method

bool isValidListInteger(
  1. List<int>? list
)

Implementation

static bool isValidListInteger(List<int>? list)
{

  return !isEmptyListInteger(list);
}