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