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