fromDartListAttachmentIdToGraphQLListAttachmentId function

List<String> fromDartListAttachmentIdToGraphQLListAttachmentId(
  1. List<AttachmentId> v
)

Implementation

List<String> fromDartListAttachmentIdToGraphQLListAttachmentId(
  List<AttachmentId> v,
) => v.map((e) => fromDartAttachmentIdToGraphQLAttachmentId(e)).toList();