Returns only non-null and non-blank strings
Iterable<String> whereNotNullOrBlank() { return where((e) => e != null && e.trim().isNotEmpty).cast<String>(); }