description property
Get the Metadata.description from the tag
Implementation
@override
String? get description => _document?.head
?.querySelector("meta[name='description']")
?.attributes
.get('content');
Implementation
String? description;