expand<T> static method
Implementation
static List<T> expand<T>(Iterable<T>? some, Iterable<T>? more) {
final list = [];
if (some != null) list.addAll(some);
if (more != null) list.addAll(more);
return List.unmodifiable(compact(list));
}