fromDartListNullableAttachmentIdNullableToGraphQLListNullableAttachmentIdNullable function

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

Implementation

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