fromDartListAttachmentIdNullableToGraphQLListAttachmentIdNullable function
- List<
AttachmentId?> v
Implementation
List<String?> fromDartListAttachmentIdNullableToGraphQLListAttachmentIdNullable(
List<AttachmentId?> v,
) =>
v
.map(
(e) => fromDartAttachmentIdNullableToGraphQLAttachmentIdNullable(e),
)
.toList();