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