Creates an IList from a Dart Iterable.
final l = ilist([1, 2, 3]);
IList<A> ilist<A>(Iterable<A> as) => IList.fromDart(as);