fromGraphQLListUserEmailNullableToDartListUserEmailNullable function
Implementation
List<UserEmail?> fromGraphQLListUserEmailNullableToDartListUserEmailNullable(
List<Object?> v,
) =>
v
.map(
(e) =>
fromGraphQLUserEmailNullableToDartUserEmailNullable(e as String?),
)
.toList();