description property
Get the Metadata.description from the tag
Implementation
@override
String? get description {
final data = _jsonData;
if (data is List) {
return data.first['description'] ?? data.first['headline'];
} else if (data is Map) {
return data.get('description') ?? data.get('headline');
}
return null;
}
Implementation
String? description;