bool isOneNullOrEmpty(List objects) { for (dynamic item in objects) { if (isNullOrEmpty(item)) { return true; } } return false; }