fromGraphQLListNullableURLNullableToDartListNullableUrlNullable function
Implementation
List<Url?>? fromGraphQLListNullableURLNullableToDartListNullableUrlNullable(
List<Object?>? v,
) => v
?.map((e) => fromGraphQLURLNullableToDartUrlNullable(e as String?))
.toList();