fromDartListAttachmentIdNullableToGraphQLListAttachmentIdNullable function

List<String?> fromDartListAttachmentIdNullableToGraphQLListAttachmentIdNullable(
  1. List<AttachmentId?> v
)

Implementation

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