TypeInfo<T>.fromListType constructor

TypeInfo<T>.fromListType(
  1. Object listType
)

Implementation

factory TypeInfo.fromListType(Object listType) {
  var t = TypeInfo.from(listType);
  return TypeInfo<T>.fromType(List, [t]);
}