extension ListExtension<T> on List<T?> {
  List<T> removeNulls() => whereType<T>().toList();
}