fromGraphQLListUserAffiliatedNumNullableToDartListUserAffiliatedNumNullable function
Implementation
List<UserAffiliatedNum?>
fromGraphQLListUserAffiliatedNumNullableToDartListUserAffiliatedNumNullable(
List<Object?> v,
) => v
.map(
(e) =>
fromGraphQLUserAffiliatedNumNullableToDartUserAffiliatedNumNullable(
e as int?,
),
)
.toList();