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