of_the_list<T extends CandidType> static method
Implementation
static Vector<T> of_the_list<T extends CandidType>(Iterable<T> list, {T? values_type}) {
Vector<T> vec = Vector<T>(values_type: values_type);
vec.addAll(list);
return vec;
}