List<Url?> fromGraphQLListURLNullableToDartListUrlNullable(List<Object?> v) => v .map((e) => fromGraphQLURLNullableToDartUrlNullable(e as String?)) .toList();