fromGraphQLListUserAffiliatedNumNullableToDartListUserAffiliatedNumNullable function

List<UserAffiliatedNum?> fromGraphQLListUserAffiliatedNumNullableToDartListUserAffiliatedNumNullable(
  1. List<Object?> v
)

Implementation

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