fromGraphQLListAttachmentIdNullableToDartListAttachmentIdNullable function

List<AttachmentId?> fromGraphQLListAttachmentIdNullableToDartListAttachmentIdNullable(
  1. List<Object?> v
)

Implementation

List<AttachmentId?>
fromGraphQLListAttachmentIdNullableToDartListAttachmentIdNullable(
  List<Object?> v,
) => v
    .map(
      (e) => fromGraphQLAttachmentIdNullableToDartAttachmentIdNullable(
        e as String?,
      ),
    )
    .toList();