fromDartListUserEmailNullableToGraphQLListUserEmailNullable function
Implementation
List<String?> fromDartListUserEmailNullableToGraphQLListUserEmailNullable(
List<UserEmail?> v,
) =>
v
.map((e) => fromDartUserEmailNullableToGraphQLUserEmailNullable(e))
.toList();