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