description property

  1. @override
String? get description
override

Get the Metadata.description from the tag

Implementation

@override
String? get description => _document?.head
    ?.querySelector("meta[name='description']")
    ?.attributes
    .get('content');
set description (String? _description)
inherited

Implementation

String? description;