fromGraphQLListNullableAttachmentIdNullableToDartListNullableAttachmentIdNullable function
Implementation
List<AttachmentId?>?
fromGraphQLListNullableAttachmentIdNullableToDartListNullableAttachmentIdNullable(
List<Object?>? v,
) =>
v
?.map(
(e) => fromGraphQLAttachmentIdNullableToDartAttachmentIdNullable(
e as String?,
),
)
.toList();