hasEmptyElement static method

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

Implementation

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