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