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