TypeInfo<T>.fromIterableType constructor

TypeInfo<T>.fromIterableType(
  1. Object itrType
)

Implementation

factory TypeInfo.fromIterableType(Object itrType) {
  var t = TypeInfo.from(itrType);
  return TypeInfo<T>.fromType(Iterable, [t]);
}