fromDartListNullableAttachmentIdToGraphQLListNullableAttachmentId function

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

Implementation

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