UniqueIdentifierProperty.fromCrawledProperty constructor
UniqueIdentifierProperty.fromCrawledProperty(
- CrawledProperty property
Implementation
factory UniqueIdentifierProperty.fromCrawledProperty(
CrawledProperty property) {
assert(
property.name.toUpperCase() == "UID",
"Received invalid property: ${property.name}",
);
return UniqueIdentifierProperty(
value: TextValue.fromCrawledStringValue(property.value).value,
);
}