fromGraphQLListNullableUserIdNullableToDartListNullableUserIdNullable function
Implementation
List<UserId?>?
fromGraphQLListNullableUserIdNullableToDartListNullableUserIdNullable(
List<Object?>? v,
) =>
v
?.map(
(e) => fromGraphQLUserIdNullableToDartUserIdNullable(e as String?),
)
.toList();