/// Useful extension functions for [Iterable] extension IterableX on Iterable { /// Removes all the null values /// and converts `Iterable` into `Iterable` Iterable get withNullifyer => [ for (final item in this) if (item != null) item ]; }