fromDartListUserNumNullableToGraphQLListUserNumNullable function
Implementation
List<String?> fromDartListUserNumNullableToGraphQLListUserNumNullable(
List<UserNum?> v,
) => v.map((e) => fromDartUserNumNullableToGraphQLUserNumNullable(e)).toList();