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