isEmptyListInteger static method

bool isEmptyListInteger(
  1. List<int>? myList
)

Implementation

static bool isEmptyListInteger(List<int>? myList)
{
  if (myList == null) {
    return true;
  }
  if (myList.length == 0) {
    return true;
  } else {
    return false;
  }
}