seoCollectionSortMarker function

String seoCollectionSortMarker(
  1. SeoCollectionSort sort
)

Stable marker serialized into package-owned collection markup.

Implementation

String seoCollectionSortMarker(SeoCollectionSort sort) => switch (sort) {
      SeoCollectionSort.newest => 'newest',
      SeoCollectionSort.oldest => 'oldest',
      SeoCollectionSort.title => 'title',
    };