toList static method

List<TypeReflection> toList(
  1. Iterable<Object> list, {
  2. bool growable = false,
})

Implementation

static List<TypeReflection> toList(Iterable<Object> list,
    {bool growable = false}) {
  return list.map((e) => TypeReflection.from(e)).toList(growable: growable);
}