fromDartListNullableUserNameNullableToGraphQLListNullableUserNameNullable function
Implementation
List<String?>?
fromDartListNullableUserNameNullableToGraphQLListNullableUserNameNullable(
  List<UserName?>? v,
) => v
    ?.map((e) => fromDartUserNameNullableToGraphQLUserNameNullable(e))
    .toList();