isEmptyInList static method

bool isEmptyInList(
  1. List<String?> list
)

Implementation

static bool isEmptyInList(List<String?> list){
  return list.where((element) => isEmpty(element)).isNotEmpty;
}