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