isEmptyProgram method

bool isEmptyProgram(
  1. List<int> data
)

Implementation

bool isEmptyProgram(List<int> data) {
  return data.isEmpty;
}